From ef18e73af172e315a5199bc7624ed582e288051f Mon Sep 17 00:00:00 2001 From: ViViDboarder Date: Tue, 24 May 2022 16:41:22 -0700 Subject: [PATCH] Ignore jk` whichkey.lua triggers --- neovim/lua/plugins/whichkey.lua | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) 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