From e5c03b42060df04306d2918d9cdfc9458d25c381 Mon Sep 17 00:00:00 2001 From: TJ DeVries Date: Thu, 16 Feb 2023 17:12:47 -0500 Subject: [PATCH] add whichkey --- init.lua | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/init.lua b/init.lua index e4beb93..969f573 100644 --- a/init.lua +++ b/init.lua @@ -54,6 +54,15 @@ require('lazy').setup({ end, }, + { -- Useful plugin to show you pending keybinds. + 'folke/which-key.nvim', + config = function() + vim.o.timeout = true + vim.o.timeoutlen = 300 + require('which-key').setup {} + end, + }, + -- Git related plugins 'tpope/vim-fugitive', 'tpope/vim-rhubarb',