summaryrefslogtreecommitdiff
path: root/lua/plugins/which-key.lua
diff options
context:
space:
mode:
authormhsn <mail@mhsn.net>2025-02-25 13:33:42 +0000
committermhsn <mail@mhsn.net>2025-02-25 13:33:42 +0000
commite6c13e2d4e7acc7a12f7b9776d4ddb2109a18010 (patch)
tree4e8dea5ef2a01487bb72bdcf552e91677311a0dc /lua/plugins/which-key.lua
parent2d0d6f6d944420e13a54b0cec602d384abf4cf39 (diff)
downloadnvim-e6c13e2d4e7acc7a12f7b9776d4ddb2109a18010.tar.gz
nvim-e6c13e2d4e7acc7a12f7b9776d4ddb2109a18010.zip
install folke/which-key.nvim
Diffstat (limited to 'lua/plugins/which-key.lua')
-rw-r--r--lua/plugins/which-key.lua11
1 files changed, 11 insertions, 0 deletions
diff --git a/lua/plugins/which-key.lua b/lua/plugins/which-key.lua
new file mode 100644
index 0000000..dc6d8e8
--- /dev/null
+++ b/lua/plugins/which-key.lua
@@ -0,0 +1,11 @@
+return {
+ {
+ "folke/which-key.nvim",
+ opts = {
+ expand = 5,
+ },
+ keys = {
+ { "<leader>?", "<cmd>WhichKey<cr>", desc = "WhichKey" },
+ },
+ },
+}