nvim-config/lua/plugins/help.lua
2024-06-08 12:17:10 +08:00

14 lines
274 B
Lua

return {
{
"folke/which-key.nvim",
config = function()
vim.o.timeout = true
vim.o.timeoutlen = 300
local wk = require("which-key")
-- 快捷键在这里定义
wk.setup()
end,
},
}