diff options
Diffstat (limited to '')
| -rw-r--r-- | nvim/lua/plugins/which-key.lua | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/nvim/lua/plugins/which-key.lua b/nvim/lua/plugins/which-key.lua new file mode 100644 index 0000000..5b1383e --- /dev/null +++ b/nvim/lua/plugins/which-key.lua @@ -0,0 +1,10 @@ +return { + "folke/which-key.nvim", + lazy = true, + event = "VeryLazy", + init = function() + vim.o.timeout = true + vim.o.timeoutlen = 500 + end, + opts = {} +} |
