dotfiles/.config/nvim/lua/disabled_plugins/whichkey.lua
2024-02-28 01:37:11 +01:00

16 lines
379 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
}
}
}