aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/nvim
diff options
context:
space:
mode:
authorToby Vincent <tobyv13@gmail.com>2022-07-15 11:57:56 -0500
committerToby Vincent <tobyv13@gmail.com>2022-07-15 11:57:56 -0500
commitd5f284e1921436a45325c2955b64d53d3954ee1b (patch)
tree7f4087ddcaba5614ae9493fb1b486a6e2001f4ef /nvim
parent67d49d7f0974b80322fabe0240b14716deac7056 (diff)
refactor(nvim): use actions.which-key for telescope keymap
Diffstat (limited to 'nvim')
-rw-r--r--nvim/.config/nvim/lua/tobyvin/plugins/telescope.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/nvim/.config/nvim/lua/tobyvin/plugins/telescope.lua b/nvim/.config/nvim/lua/tobyvin/plugins/telescope.lua
index 7b7a05a..062b94a 100644
--- a/nvim/.config/nvim/lua/tobyvin/plugins/telescope.lua
+++ b/nvim/.config/nvim/lua/tobyvin/plugins/telescope.lua
@@ -14,7 +14,7 @@ M.setup = function()
mappings = {
i = {
["<esc>"] = actions.close,
- ["<C-h>"] = "which_key",
+ ["<C-h>"] = actions.which_key,
},
},
file_ignore_patterns = { "^.git/" },