From 43d1e26cb1d85fb4f0243a1819e356a7cde37be1 Mon Sep 17 00:00:00 2001 From: Samir Benmendil Date: Tue, 31 Oct 2023 22:42:01 +0000 Subject: [PATCH] nvim/lazy: do not notify about plugin updates --- nvim/lua/config/lazy.lua | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/nvim/lua/config/lazy.lua b/nvim/lua/config/lazy.lua index 91f86a7..1eebb56 100644 --- a/nvim/lua/config/lazy.lua +++ b/nvim/lua/config/lazy.lua @@ -27,7 +27,11 @@ require("lazy").setup({ -- version = "*", -- try installing the latest stable version for plugins that support semver }, install = { colorscheme = { "tokyonight", "habamax" } }, - checker = { enabled = true }, -- automatically check for plugin updates + checker = { + -- automatically check for plugin updates + enabled = true, + notify = false, + }, performance = { rtp = { -- HACK: do not reset rtp to allow interop with vim-plug -- 2.48.1