.dotfiles/linux/.config/nvim/lua/plugins/nvim-bufferline.lua
2024-01-10 04:30:52 -05:00

16 lines
337 B
Lua

return {
"akinsho/bufferline.nvim",
opts = {
options = {
-- diagnostics = "nvim_lsp",
always_show_bufferline = false,
offsets = {
{ filetype = "NvimTree", text = "File Explorer", highlight = "Directory", text_align = "left" },
},
},
},
dependencies = {
"nvim-tree/nvim-web-devicons",
},
event = "VeryLazy",
}