nvim-config/.config/nvim/lua/plugins/bufferline.lua
2024-10-21 11:08:26 +03:00

21 lines
591 B
Lua

return {
'akinsho/bufferline.nvim',
version = '*',
dependencies = 'nvim-tree/nvim-web-devicons',
config = function ()
require('bufferline').setup({
options = {
diagnostics = 'nvim_lsp',
separator_style = 'slant',
offsets = {
{
filetype = "NvimTree",
text = "File Explorer",
highlight = "Directory",
separator = true
}
}
}
})
end
}