mirror of
https://github.com/josean-dev/dev-environment-files.git
synced 2025-01-09 17:51:20 +01:00
14 lines
292 B
Lua
14 lines
292 B
Lua
|
return {
|
||
|
"folke/which-key.nvim",
|
||
|
event = "VeryLazy",
|
||
|
init = function()
|
||
|
vim.o.timeout = true
|
||
|
vim.o.timeoutlen = 500
|
||
|
end,
|
||
|
opts = {
|
||
|
-- your configuration comes here
|
||
|
-- or leave it empty to use the default settings
|
||
|
-- refer to the configuration section below
|
||
|
},
|
||
|
}
|