chore(nvim): Make lazy autoupdate quiet

This commit is contained in:
Olaf Alexander 2024-11-05 15:17:13 -06:00
parent 4a925c28a4
commit 8c080ebec9

View File

@ -31,5 +31,9 @@ require("lazy").setup({
-- colorscheme that will be used when installing plugins.
install = { colorscheme = { "habamax" } },
-- automatically check for plugin updates
checker = { enabled = true },
checker = {
enabled = true,
notify = false,
frequency = 2592000 -- 30 days
},
})