add buffer manager

This commit is contained in:
fiplox 2023-01-19 17:06:29 +01:00
parent 192d6c0cb4
commit 7da11777fe
1 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,26 @@
local M = {
'j-morano/buffer_manager.nvim',
}
function M.config()
require('buffer_manager').setup {
-- line_keys = '', -- deactivate line keybindings
select_menu_item_commands = {
edit = {
key = '<CR>',
command = 'edit',
},
v = {
key = '<C-v>',
command = 'vsplit',
},
h = {
key = '<C-h>',
command = 'split',
},
},
width = 0.8,
}
end
return M