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

@ -890,6 +890,7 @@ require('lazy').setup({
'lua',
'luadoc',
'markdown',
'markdown_inline',
'vim',
'vimdoc',
'go',
@ -898,6 +899,9 @@ require('lazy').setup({
'gosum',
'hcl',
'terraform',
'dockerfile',
'gitignore',
'json',
},
-- Autoinstall languages that are not installed
auto_install = true,

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