summary refs log tree commit diff
path: root/.config/nvim/lua/plugins/whichkey.lua
diff options
context:
space:
mode:
Diffstat (limited to '.config/nvim/lua/plugins/whichkey.lua')
-rw-r--r--.config/nvim/lua/plugins/whichkey.lua10
1 files changed, 10 insertions, 0 deletions
diff --git a/.config/nvim/lua/plugins/whichkey.lua b/.config/nvim/lua/plugins/whichkey.lua
new file mode 100644
index 0000000..dc21eda
--- /dev/null
+++ b/.config/nvim/lua/plugins/whichkey.lua
@@ -0,0 +1,10 @@
+return {
+  {
+    'folke/which-key.nvim',
+    event = 'VeryLazy',
+    opts = {
+      sort = { 'alphanum' },
+      icons = { separator = '→ ', group = '🞱 ' },
+    },
+  },
+}