mirror of
https://github.com/nvim-lua/kickstart.nvim.git
synced 2025-08-20 01:29:08 +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
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