blob: 8ae04061a1616529a53e9f22018cf8516d5c4f15 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
return {
"folke/which-key.nvim",
event = "VeryLazy",
init = function()
vim.o.timeout = true
vim.o.timeoutlen = 300
end,
-- Don't set keymaps here using the plugin spec or elsewhere using the
-- wk.add fn. Instead use normal vim.keymap.set and set a description.
-- This way everything without this plugin.
}
|