mirror of
https://github.com/cap153/nvim.git
synced 2025-12-26 19:25:01 +08:00
17 lines
335 B
Lua
17 lines
335 B
Lua
return {
|
|
"folke/which-key.nvim",
|
|
event = "VeryLazy",
|
|
init = function()
|
|
vim.o.timeout = true
|
|
vim.o.timeoutlen = 300
|
|
end,
|
|
opts = {
|
|
-- your configuration comes here
|
|
-- or leave it empty to use the default settings
|
|
-- refer to the configuration section below
|
|
},
|
|
config = function()
|
|
require("which-key").setup {}
|
|
end
|
|
}
|
|
|