diff --git a/lua/custom/plugins/bufferline.lua b/lua/custom/plugins/bufferline.lua new file mode 100644 index 00000000..20dfc2d5 --- /dev/null +++ b/lua/custom/plugins/bufferline.lua @@ -0,0 +1,23 @@ +-- for tablines + + +return { + 'akinsho/bufferline.nvim', + tag = "v3.*", + dependencies = { 'nvim-tree/nvim-web-devicons' }, + config = function() + require('bufferline').setup { + options = { + diagnostics = "nvim_lsp", + offsets = { + { + filetype = "NvimTree", + text = "File Explorer", + text_align = "center", + separator = true, + }, + } + }, + } + end, +}