dotfiles/nvim/.config/nvim/after/plugin/which-key.lua
Sanchayan Maity 6613689352 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.
2021-10-01 14:55:30 +05:30

8 lines
122 B
Lua

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