neovim/lua/plugins/which-key.lua
2024-01-02 16:52:34 -08:00

9 lines
168 B
Lua

return {
"folke/which-key.nvim",
event = "VeryLazy",
init = function()
vim.o.timeout = true
vim.o.timeoutlen = 300
end,
opts = {}
}