From b979d133209836335b774f57b5a8a217485ba332 Mon Sep 17 00:00:00 2001 From: Shadow Cat Date: Thu, 16 Feb 2023 01:39:44 -0500 Subject: [PATCH] added which-key --- lua/plugins/util.lua | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/lua/plugins/util.lua b/lua/plugins/util.lua index 07b0687..be69a20 100644 --- a/lua/plugins/util.lua +++ b/lua/plugins/util.lua @@ -18,4 +18,16 @@ return { end, dependencies = 'nvim-lua/plenary.nvim' }, + { + "folke/which-key.nvim", + config = function() + vim.o.timeout = true + vim.o.timeoutlen = 300 + require("which-key").setup({ + -- your configuration comes here + -- or leave it empty to use the default settings + -- refer to the configuration section below + }) + end, + }, }