12 lines
223 B
Lua
12 lines
223 B
Lua
|
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
|
||
|
}
|