Add the bufferline custom plugin

This commit is contained in:
Juan Miguel Rúa 2024-06-07 10:39:37 +02:00
parent 7ab92babb0
commit ab1a8d63ec
2 changed files with 20 additions and 0 deletions

View file

@ -0,0 +1,16 @@
return {
{
'akinsho/bufferline.nvim',
version = '*',
dependencies = 'nvim-tree/nvim-web-devicons',
config = function()
vim.opt.termguicolors = true
require('bufferline').setup {
options = {
numbers = 'none',
bottom = true,
},
}
end,
},
}