added bufferline tabs

This commit is contained in:
Micah Effiong 2023-06-15 10:05:26 +01:00
parent 53c563fc45
commit 48a60118d8
1 changed files with 23 additions and 0 deletions

View File

@ -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,
}