13 lines
535 B
Lua
13 lines
535 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 = "execute",
|
|
})
|