mirror of
https://github.com/nvim-lua/kickstart.nvim.git
synced 2025-08-19 09:08:35 +02:00
16 lines
316 B
Lua
16 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,
|
|
},
|
|
}
|