blob: 21048b947ac8f57248fc1fb1a803d2931a1326ca (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
return {
{
"folke/which-key.nvim",
event = "VeryLazy",
init = function()
vim.o.timeout = true
vim.o.timeoutlen = 500
end,
config = function()
local wk = require("which-key")
wk.setup()
end,
}
}
|