diff options
author | crupest <crupest@outlook.com> | 2023-09-08 17:57:37 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2023-09-09 09:22:26 +0800 |
commit | 3c500ccfa20273a5f1670e07acd5f73ac49d05f3 (patch) | |
tree | 428b1905085e48dace6b834a688a76f4ae1c8bdb /configs/nvim/lua/plugins/which-key-nvim.lua | |
parent | 2dfb1a054c77552e23205ddcce7520b5e10adad4 (diff) | |
download | crupest-3c500ccfa20273a5f1670e07acd5f73ac49d05f3.tar.gz crupest-3c500ccfa20273a5f1670e07acd5f73ac49d05f3.tar.bz2 crupest-3c500ccfa20273a5f1670e07acd5f73ac49d05f3.zip |
Update nvim config.
Diffstat (limited to 'configs/nvim/lua/plugins/which-key-nvim.lua')
-rw-r--r-- | configs/nvim/lua/plugins/which-key-nvim.lua | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/configs/nvim/lua/plugins/which-key-nvim.lua b/configs/nvim/lua/plugins/which-key-nvim.lua new file mode 100644 index 0000000..11be1bd --- /dev/null +++ b/configs/nvim/lua/plugins/which-key-nvim.lua @@ -0,0 +1,8 @@ +return { + "folke/which-key.nvim", + event = "VeryLazy", + init = function() + vim.o.timeout = true + vim.o.timeoutlen = 300 + end, +} |