mirror of
https://github.com/nvim-lua/kickstart.nvim.git
synced 2025-08-21 01:58:25 +02:00
17 lines
316 B
Lua
17 lines
316 B
Lua
|
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,
|
||
|
},
|
||
|
}
|