add custom plugins
This commit is contained in:
parent
c80a77488b
commit
693e7c3053
10 changed files with 175 additions and 1 deletions
23
lua/custom/plugins/bufferline.lua
Normal file
23
lua/custom/plugins/bufferline.lua
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
return {
|
||||
{
|
||||
'akinsho/bufferline.nvim',
|
||||
version = "v3.*",
|
||||
dependencies = {
|
||||
'nvim-tree/nvim-web-devicons'
|
||||
},
|
||||
opts = {},
|
||||
config = function()
|
||||
require('bufferline').setup {
|
||||
options = {
|
||||
numbers = 'none',
|
||||
close_command = 'Bdelete! %d',
|
||||
right_mouse_command = 'Bdelete! %d',
|
||||
indicator = {
|
||||
style = 'icon',
|
||||
},
|
||||
-- separator_style = 'slant',
|
||||
}
|
||||
}
|
||||
end,
|
||||
},
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue