summaryrefslogtreecommitdiff
path: root/lua/plugins/whichkey.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lua/plugins/whichkey.lua')
-rw-r--r--lua/plugins/whichkey.lua13
1 files changed, 13 insertions, 0 deletions
diff --git a/lua/plugins/whichkey.lua b/lua/plugins/whichkey.lua
new file mode 100644
index 0000000..6f820e0
--- /dev/null
+++ b/lua/plugins/whichkey.lua
@@ -0,0 +1,13 @@
+return {
+ "folke/which-key.nvim",
+ event = "VeryLazy",
+ init = function()
+ vim.o.timeout = true
+ vim.o.timeoutlen = 300
+ end,
+ opts = {
+ -- your configuration comes here
+ -- or leave it empty to use the default settings
+ -- refer to the configuration section below
+ }
+}