From 0c7ede586fd616815fc6b9759b0a89dc6943c77d Mon Sep 17 00:00:00 2001 From: tea Date: Tue, 15 Oct 2024 13:55:04 +0200 Subject: [PATCH] nvim: check for updates every 7 days instead of 1 hour --- .config/nvim/lua/my/lazy.lua | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.config/nvim/lua/my/lazy.lua b/.config/nvim/lua/my/lazy.lua index b435587..1ee01f0 100644 --- a/.config/nvim/lua/my/lazy.lua +++ b/.config/nvim/lua/my/lazy.lua @@ -22,5 +22,8 @@ require("lazy").setup({ { import = "my/plugins" }, }, -- automatically check for plugin updates - checker = { enabled = true }, + checker = { + enabled = true, + frequency = 604800, -- every 7 days + }, })