nvim-config/lua/plugins/whichkey.lua
2025-02-27 11:49:14 -05:00

15 lines
234 B
Lua

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