add whichkey

This commit is contained in:
TJ DeVries 2023-02-16 17:12:47 -05:00
parent 775ff6ac89
commit e5c03b4206
1 changed files with 9 additions and 0 deletions

View File

@ -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',