diff --git a/lua/plugins/ui/bufferline.lua b/lua/plugins/ui/bufferline.lua deleted file mode 100644 index 10416306..00000000 --- a/lua/plugins/ui/bufferline.lua +++ /dev/null @@ -1,80 +0,0 @@ ----@type LazyPluginSpec -return { - "akinsho/bufferline.nvim", - event = "VeryLazy", - dependencies = { "nvim-tree/nvim-web-devicons" }, - init = function() - vim.o.showtabline = 2 - vim.o.tabline = " " - end, - opts = { - options = { - mode = "tabs", - show_close_icon = false, - buffer_close_icon = "🗙", - }, - }, - keys = { - { - "1", - "BufferLineGoToBuffer 1", - desc = "Go to tab 1", - }, - { - "2", - "BufferLineGoToBuffer 2", - desc = "Go to tab 2", - }, - { - "3", - "BufferLineGoToBuffer 3", - desc = "Go to tab 3", - }, - { - "4", - "BufferLineGoToBuffer 4", - desc = "Go to tab 4", - }, - { - "5", - "BufferLineGoToBuffer 5", - desc = "Go to tab 5", - }, - { - "6", - "BufferLineGoToBuffer 6", - desc = "Go to tab 6", - }, - { - "7", - "BufferLineGoToBuffer 7", - desc = "Go to tab 7", - }, - { - "8", - "BufferLineGoToBuffer 8", - desc = "Go to tab 8", - }, - { - "9", - "BufferLineGoToBuffer 9", - desc = "Go to tab 9", - }, - - { "", "+tabmove", desc = "Move tab to next" }, - { "", "-tabmove", desc = "Move tab to previous" }, - - { "bc", "BufferLinePickClose", desc = "Close" }, - { - "bse", - "BufferLineSortByExtension", - desc = "By extension", - }, - { - "bsd", - "BufferLineSortByDirectory", - desc = "By directory", - }, - { "bst", "BufferLineSortByTabs", desc = "By tabs" }, - }, -} diff --git a/lua/plugins/ui/guideline.lua b/lua/plugins/ui/guideline.lua new file mode 100644 index 00000000..f298356b --- /dev/null +++ b/lua/plugins/ui/guideline.lua @@ -0,0 +1,10 @@ +---@type LazyPluginSpec +return { + "ofseed/guideline.nvim", + init = function () + vim.o.showtabline = 2 + end, + ---@module "guideline" + ---@type GuideLine.Options + opts = {}, +}