From d7f21fb86fbcf39cf1a4380c9d9cf7a57a643f94 Mon Sep 17 00:00:00 2001 From: Oliver Hartmann Date: Wed, 14 Jun 2023 12:23:53 +0200 Subject: [PATCH] disable message when change detected in lazy --- lua/config/lazy.lua | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/lua/config/lazy.lua b/lua/config/lazy.lua index 06ad74e..7f48356 100644 --- a/lua/config/lazy.lua +++ b/lua/config/lazy.lua @@ -15,11 +15,9 @@ require('lazy').setup({ spec = { import = 'plugins' }, - checker = { - -- automatically check for plugin updates - enabled = false, - concurrency = nil, ---@type number? set to 1 to check for updates very slowly - notify = false, -- get a notification when new updates are found - frequency = 3600, -- check for updates every hour + change_detection = { + -- automatically check for config file changes and reload the ui + enabled = true, + notify = false, -- get a notification when changes are found }, })