summaryrefslogtreecommitdiff
path: root/lua/plugins/which-key.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lua/plugins/which-key.lua')
-rw-r--r--lua/plugins/which-key.lua9
1 files changed, 9 insertions, 0 deletions
diff --git a/lua/plugins/which-key.lua b/lua/plugins/which-key.lua
new file mode 100644
index 0000000..0947703
--- /dev/null
+++ b/lua/plugins/which-key.lua
@@ -0,0 +1,9 @@
+return {
+ 'folke/which-key.nvim',
+ event = "VeryLazy",
+ init = function()
+ vim.o.timeout = true
+ vim.o.timeoutlen = 300
+ end,
+ opts = {}
+}