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