From f386d9dc8fcb4f046aaf2a0a04f7f057650ea9e0 Mon Sep 17 00:00:00 2001 From: Amy Retzerau Date: Fri, 3 Oct 2025 11:41:29 +0200 Subject: [PATCH] fix: disabled notfications about lazyvim packages update --- .config/nvim/lua/config/lazy.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/nvim/lua/config/lazy.lua b/.config/nvim/lua/config/lazy.lua index 8c758a9..65ee338 100644 --- a/.config/nvim/lua/config/lazy.lua +++ b/.config/nvim/lua/config/lazy.lua @@ -31,5 +31,5 @@ require("lazy").setup({ -- colorscheme that will be used when installing plugins. install = { colorscheme = {"tokyonight", "habamax" } }, -- automatically check for plugin updates - checker = { enabled = true }, + checker = { enabled = true, notify = false }, })