disable message when change detected in lazy

This commit is contained in:
Oliver Hartmann 2023-06-14 12:23:53 +02:00
parent 91e8fc21f2
commit d7f21fb86f

View File

@ -15,11 +15,9 @@ require('lazy').setup({
spec = { spec = {
import = 'plugins' import = 'plugins'
}, },
checker = { change_detection = {
-- automatically check for plugin updates -- automatically check for config file changes and reload the ui
enabled = false, enabled = true,
concurrency = nil, ---@type number? set to 1 to check for updates very slowly notify = false, -- get a notification when changes are found
notify = false, -- get a notification when new updates are found
frequency = 3600, -- check for updates every hour
}, },
}) })