add buffer manager
This commit is contained in:
parent
192d6c0cb4
commit
7da11777fe
26
lua/plugins/buffer_manager.lua
Normal file
26
lua/plugins/buffer_manager.lua
Normal 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
|
Loading…
Reference in New Issue
Block a user