diff --git a/laptop/config/plugins.lua b/laptop/config/plugins.lua index 2fe0d1a..b5e6328 100644 --- a/laptop/config/plugins.lua +++ b/laptop/config/plugins.lua @@ -94,5 +94,5 @@ require("lazy").setup({ }, lockfile = vim.fn.stdpath("config") .. "/config/lazy-lock.json", install = { missing = true, colorscheme = { "habamax" } }, - checker = { enabled = true }, + checker = { enabled = true, notify = false }, }) diff --git a/server/config/plugins.lua b/server/config/plugins.lua index aa5233a..8a3e733 100644 --- a/server/config/plugins.lua +++ b/server/config/plugins.lua @@ -62,6 +62,6 @@ require("lazy").setup({ }, lockfile = vim.fn.stdpath("config") .. "/config/lazy-lock.json", install = { missing = true, colorscheme = { "habamax" } }, - checker = { enabled = true }, + checker = { enabled = true, notify = false }, }) diff --git a/vps/config/plugins.lua b/vps/config/plugins.lua index 9ae0487..1b51d80 100644 --- a/vps/config/plugins.lua +++ b/vps/config/plugins.lua @@ -62,6 +62,6 @@ require("lazy").setup({ }, lockfile = vim.fn.stdpath("config") .. "/config/lazy-lock.json", install = { missing = true, colorscheme = { "habamax" } }, - checker = { enabled = true }, + checker = { enabled = true, notify = false }, })