diff options
Diffstat (limited to '.config/nvim/lua/plugins/which-key.lua')
| -rw-r--r-- | .config/nvim/lua/plugins/which-key.lua | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/.config/nvim/lua/plugins/which-key.lua b/.config/nvim/lua/plugins/which-key.lua new file mode 100644 index 0000000..104d728 --- /dev/null +++ b/.config/nvim/lua/plugins/which-key.lua @@ -0,0 +1,16 @@ +return { + "folke/which-key.nvim", + event = "VeryLazy", + config = function() + require("which-key").register({ + ["<leader>t"] = { + name = "+test", + w = { name = "+watch" }, + }, + ["<leader>f"] = { name = "+Telescope" }, + ["<leader>d"] = { name = "+debug" }, + ["<leader>s"] = { name = "+Spectre" }, + ["<leader>x"] = { name = "+Trouble" }, + }) + end, +} |
