Files
nvim/lua/plugins/nvim-mapper.lua
2022-11-15 17:17:06 -05:00

13 lines
538 B
Lua

require("nvim-mapper").setup({
-- do not assign the default keymap (<leader>MM)
no_map = false,
-- where should ripgrep look for your keybinds definitions.
-- Default config search path is ~/.config/nvim/lua
search_path = os.getenv("~/.config/nvim/lua/keymaps.lua"),
-- what should be done with the selected keybind when pressing enter.
-- Available actions:
-- * "definition" - Go to keybind definition (default)
-- * "execute" - Execute the keybind command
action_on_enter = "definition",
})