Feat(plugin): add which-key.nvim

This commit is contained in:
Bertrand Benjamin 2023-04-16 14:00:54 +02:00
parent c96fdf218f
commit 30ba1656b4
1 changed files with 12 additions and 0 deletions

View File

@ -164,6 +164,18 @@ return packer.startup(function(use)
-- },
-- config = [[require('config.telekasten')]]
-- }
use {
"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
}
if PACKER_BOOTSTRAP then
require("packer").sync()