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 +}