21 lines
414 B
Lua
21 lines
414 B
Lua
-- bbye
|
|
--
|
|
-- Bbye allows you to do delete buffers (close files) without closing your windows or messing up your layout.
|
|
--
|
|
-- https://github.com/moll/vim-bbye
|
|
--
|
|
|
|
return {
|
|
{
|
|
'moll/vim-bbye',
|
|
keys = {
|
|
{ '<leader>bc', '<CMD>Bdelete<CR>', desc = '[c]lose current buffer' },
|
|
{
|
|
'<leader>bC',
|
|
'<CMD>bufdo :Bdelete<CR>',
|
|
desc = '[C]lose all buffers',
|
|
},
|
|
},
|
|
},
|
|
}
|