feat: added which-key

main
Ricard Illa 2023-08-02 16:19:42 +02:00
parent 476aeacbe0
commit 5dc7a83abe
Signed by: rilla
GPG Key ID: 525307BD467E4205
1 changed files with 11 additions and 0 deletions

View File

@ -0,0 +1,11 @@
return {
"folke/which-key.nvim",
event = "VeryLazy",
init = function()
vim.o.timeout = true
vim.o.timeoutlen = 500
end,
config = function()
require("which-key").setup()
end
}