summaryrefslogtreecommitdiff
path: root/lua/config/plugins/whichkey.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lua/config/plugins/whichkey.lua')
-rw-r--r--lua/config/plugins/whichkey.lua13
1 files changed, 13 insertions, 0 deletions
diff --git a/lua/config/plugins/whichkey.lua b/lua/config/plugins/whichkey.lua
new file mode 100644
index 0000000..beff180
--- /dev/null
+++ b/lua/config/plugins/whichkey.lua
@@ -0,0 +1,13 @@
+return {
+ -- WhichKey is a lua plugin that displays a popup with possible keybindings of the command you started typing.
+ {
+ "folke/which-key.nvim",
+ event = "VeryLazy",
+ init = function()
+ vim.o.timeout = true
+ vim.o.timeoutlen = 10000
+ end,
+ opts = {
+ },
+ },
+}