Add the bufferline custom plugin
This commit is contained in:
parent
7ab92babb0
commit
ab1a8d63ec
4
init.lua
4
init.lua
|
@ -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,
|
||||
|
|
|
@ -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,
|
||||
},
|
||||
}
|
Loading…
Reference in New Issue