blob: beff180e61842507511621850751ba4be4f09232 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
return {
-- WhichKey is a lua plugin that displays a popup with possible keybindings of the command you started typing.
{
"folke/which-key.nvim",
event = "VeryLazy",
init = function()
vim.o.timeout = true
vim.o.timeoutlen = 10000
end,
opts = {
},
},
}
|