mirror of
https://github.com/nvim-lua/kickstart.nvim.git
synced 2025-08-20 09:38:33 +02:00
Add the bufferline custom plugin
This commit is contained in:
parent
7ab92babb0
commit
ab1a8d63ec
2 changed files with 20 additions and 0 deletions
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,
|
||||
|
|
16
lua/custom/plugins/bufferline.lua
Normal file
16
lua/custom/plugins/bufferline.lua
Normal 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,
|
||||
},
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue