From 8c080ebec909747f2ea88c4504c7fdee80d4b72a Mon Sep 17 00:00:00 2001 From: Olaf Alexander Date: Tue, 5 Nov 2024 15:17:13 -0600 Subject: [PATCH] chore(nvim): Make lazy autoupdate quiet --- dot-config/nvim/lua/config/lazy.lua | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/dot-config/nvim/lua/config/lazy.lua b/dot-config/nvim/lua/config/lazy.lua index a86c234..7a1ecad 100644 --- a/dot-config/nvim/lua/config/lazy.lua +++ b/dot-config/nvim/lua/config/lazy.lua @@ -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 + }, })