mirror of
https://github.com/nvim-lua/kickstart.nvim.git
synced 2025-08-07 11:35:06 +02:00
12 lines
237 B
Lua
12 lines
237 B
Lua
return {
|
|
'akinsho/bufferline.nvim',
|
|
version = "*",
|
|
dependencies = 'nvim-tree/nvim-web-devicons',
|
|
config = function()
|
|
require('bufferline').setup {
|
|
options = {
|
|
separator_style = 'slant',
|
|
}
|
|
}
|
|
end,
|
|
}
|