From 5dc7a83abeea524266c0d663e01751ffab41c709 Mon Sep 17 00:00:00 2001 From: Ricard Illa Date: Wed, 2 Aug 2023 16:19:42 +0200 Subject: [PATCH] feat: added which-key --- home/neovim/lua/plugins/which-key.lua | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 home/neovim/lua/plugins/which-key.lua diff --git a/home/neovim/lua/plugins/which-key.lua b/home/neovim/lua/plugins/which-key.lua new file mode 100644 index 0000000..0e77cd3 --- /dev/null +++ b/home/neovim/lua/plugins/which-key.lua @@ -0,0 +1,11 @@ +return { + "folke/which-key.nvim", + event = "VeryLazy", + init = function() + vim.o.timeout = true + vim.o.timeoutlen = 500 + end, + config = function() + require("which-key").setup() + end +}