summaryrefslogtreecommitdiffstats
path: root/.config/nvim/lua/plugs-config/whichkey.lua
diff options
context:
space:
mode:
Diffstat (limited to '.config/nvim/lua/plugs-config/whichkey.lua')
-rw-r--r--.config/nvim/lua/plugs-config/whichkey.lua16
1 files changed, 16 insertions, 0 deletions
diff --git a/.config/nvim/lua/plugs-config/whichkey.lua b/.config/nvim/lua/plugs-config/whichkey.lua
index f81b879..9529229 100644
--- a/.config/nvim/lua/plugs-config/whichkey.lua
+++ b/.config/nvim/lua/plugs-config/whichkey.lua
@@ -1,3 +1,4 @@
+
local wk = require("which-key")
wk.register({
b = { ':Buffers<CR>', 'buffers', noremap = true, silent = true },
@@ -25,3 +26,18 @@ wk.register({
r = { ':Rg<CR>', 'ripgrep', noremap = true, silent = true },
},
}, { prefix = '<leader>', })
+wk.setup({
+ plugins = {
+ presets = {
+ operators = false,
+ motions = false,
+ text_objects = false,
+ window = false,
+ nav = false,
+ z = false,
+ g = false
+ },
+ },
+ triggers = { "<leader>" },
+ triggers_nowait = { "d" },
+})