nvim-config/lua/plugins/help.lua

14 lines
274 B
Lua
Raw Normal View History

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