diff --git a/lua/plugins/buffer_manager.lua b/lua/plugins/buffer_manager.lua new file mode 100644 index 0000000..d956cb4 --- /dev/null +++ b/lua/plugins/buffer_manager.lua @@ -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 = '', + command = 'edit', + }, + v = { + key = '', + command = 'vsplit', + }, + h = { + key = '', + command = 'split', + }, + }, + width = 0.8, + } +end + +return M