Add which-key

This commit is contained in:
Tyler Hallada 2023-12-01 15:26:00 -05:00
parent 3310dbec07
commit d484f4ee38
2 changed files with 7 additions and 0 deletions

View File

@ -368,6 +368,12 @@ return require('packer').startup(function(use)
require('plugins.session-lens') require('plugins.session-lens')
end end
} }
use {
'folke/which-key.nvim',
config = function()
require('plugins.which-key-nvim')
end
}
-- Automatically set up your configuration after cloning packer.nvim -- Automatically set up your configuration after cloning packer.nvim
-- Put this at the end after all plugins -- Put this at the end after all plugins

View File

@ -0,0 +1 @@
require('which-key').setup()