diff --git a/neovim/lua/plugins/whichkey.lua b/neovim/lua/plugins/whichkey.lua index 026f266..c2907f9 100644 --- a/neovim/lua/plugins/whichkey.lua +++ b/neovim/lua/plugins/whichkey.lua @@ -2,9 +2,10 @@ local M = {} function M.configure() require("which-key").setup({ - -- your configuration comes here - -- or leave it empty to use the default settings - -- refer to the configuration section below + triggers_blacklist = { + i = { "j", "k", "`"}, + v = { "j", "k" }, + }, }) end