nvim/lua/plugins/buffer_manager.lua

26 lines
427 B
Lua
Raw Normal View History

2023-12-04 09:24:43 +01:00
return {
'j-morano/buffer_manager.nvim',
opts = {
-- line_keys = '', -- deactivate line keybindings
short_term_names = true,
focus_alternate_buffer = true,
select_menu_item_commands = {
edit = {
key = '<CR>',
command = 'edit',
},
v = {
key = '<C-v>',
command = 'vsplit',
},
h = {
key = '<C-h>',
command = 'split',
},
},
width = 0.6,
highlight = "Normal:Normal",
},
}