aboutsummaryrefslogtreecommitdiffstats
path: root/nvim/lua/user/which-key.lua
diff options
context:
space:
mode:
Diffstat (limited to 'nvim/lua/user/which-key.lua')
-rw-r--r--nvim/lua/user/which-key.lua11
1 files changed, 11 insertions, 0 deletions
diff --git a/nvim/lua/user/which-key.lua b/nvim/lua/user/which-key.lua
new file mode 100644
index 0000000..f7ae4bb
--- /dev/null
+++ b/nvim/lua/user/which-key.lua
@@ -0,0 +1,11 @@
+local M = {
+ "folke/which-key.nvim",
+ commit = "5224c261825263f46f6771f1b644cae33cd06995",
+ event = "VeryLazy",
+}
+
+function M.config()
+ require("which-key").setup {}
+end
+
+return M