mirror of
https://github.com/nvim-lua/kickstart.nvim.git
synced 2025-08-07 19:44:58 +02:00
13 lines
237 B
Lua
13 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,
|
||
|
}
|