Mapper plugin, Telescope extensions
This commit is contained in:
12
lua/plugins/nvim-mapper.lua
Normal file
12
lua/plugins/nvim-mapper.lua
Normal file
@ -0,0 +1,12 @@
|
||||
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("HOME") .. "/.config/nvim/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",
|
||||
})
|
||||
Reference in New Issue
Block a user