summaryrefslogtreecommitdiff
path: root/lua/plugins/which-key.lua
diff options
context:
space:
mode:
authorDavid Luevano Alvarado <david@luevano.xyz>2023-08-27 14:56:33 -0600
committerDavid Luevano Alvarado <david@luevano.xyz>2023-08-27 14:56:33 -0600
commit2e8a5a85148413304aadecc3d0f163ade47fe7c5 (patch)
treecce533d1bd054b69ae2d9f7a904c45c62502e1f8 /lua/plugins/which-key.lua
parent36bc3b587bea9fc7f11615fe9233856ede24b9fd (diff)
feat: add tab navigation keybinds, refactor which-key settings
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 = {}
+}