21 lines
591 B
Lua
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
|
|
}
|