Add whichkey

This commit is contained in:
ViViDboarder 2021-12-10 16:54:37 -08:00
parent 3490deeb18
commit d42d58a45d
2 changed files with 17 additions and 0 deletions

View File

@ -72,6 +72,12 @@ return require('packer').startup(function(use)
-- Auto ctags generation
use "ludovicchabant/vim-gutentags"
-- Make it easier to discover some of my keymaps
use {
"folke/which-key.nvim",
config = function() require("plugins.whichkey").configure() end
}
-- Better commenting
use {
"tomtom/tcomment_vim",

View File

@ -0,0 +1,11 @@
local M = {}
function M.configure()
require("which-key").setup {
-- your configuration comes here
-- or leave it empty to use the default settings
-- refer to the configuration section below
}
end
return M