nvim: after/plugin/which-key: Add triggers blacklist

We have some mappings starting with p and need to blacklist in which key
without which using paste 'p' becomes impossible.
This commit is contained in:
Sanchayan Maity 2021-10-01 09:52:35 +05:30
parent 31780f0c25
commit 6613689352
1 changed files with 7 additions and 1 deletions

View File

@ -1 +1,7 @@
require("which-key").setup {}
require("which-key").setup {
triggers_blacklist = {
n = { "p" },
i = { "j", "k" },
v = { "j", "k" },
},
}