Files
dotfiles/sources/nvim/lua/settings/lazy/plugins/which-key.lua
T
2025-11-08 20:46:24 +01:00

12 lines
184 B
Lua

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