summaryrefslogtreecommitdiffstats
path: root/lua/user/core/which-key.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lua/user/core/which-key.lua')
-rw-r--r--lua/user/core/which-key.lua9
1 files changed, 9 insertions, 0 deletions
diff --git a/lua/user/core/which-key.lua b/lua/user/core/which-key.lua
new file mode 100644
index 0000000..33e9886
--- /dev/null
+++ b/lua/user/core/which-key.lua
@@ -0,0 +1,9 @@
+local status_ok, which_key = pcall(require, "which-key")
+if not status_ok then
+ print "which-key init failed"
+ return
+end
+
+which_key.setup {
+ -- FIXME
+}