From 91dad4fe61c1e80b56da21df3d9839df368ce2a3 Mon Sep 17 00:00:00 2001 From: Emil Miler Date: Wed, 25 Jan 2023 15:44:15 +0100 Subject: [PATCH] Add Which Key --- lua/plugins/which-key.lua | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 lua/plugins/which-key.lua diff --git a/lua/plugins/which-key.lua b/lua/plugins/which-key.lua new file mode 100644 index 0000000..17c8d60 --- /dev/null +++ b/lua/plugins/which-key.lua @@ -0,0 +1,7 @@ +return { + "folke/which-key.nvim", + config = function() + vim.o.timeout = true + vim.o.timeoutlen = 300 + end +}