nvim: Don't show Lazy updates constantly

This commit is contained in:
2024-11-20 17:42:51 +01:00
parent c9a710b86b
commit 06257367b8
+4 -1
View File
@@ -66,5 +66,8 @@ 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,
},
})