From 06257367b83da0dcfd1c8159241bf5ae6f2acd99 Mon Sep 17 00:00:00 2001 From: Joakim Hulthe Date: Mon, 4 Nov 2024 17:14:35 +0100 Subject: [PATCH] nvim: Don't show Lazy updates constantly --- tree/.config/nvim/lua/plugins.lua | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tree/.config/nvim/lua/plugins.lua b/tree/.config/nvim/lua/plugins.lua index d9653b3..3246365 100644 --- a/tree/.config/nvim/lua/plugins.lua +++ b/tree/.config/nvim/lua/plugins.lua @@ -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, + }, })