diff options
| author | Folke Lemaitre <folke.lemaitre@gmail.com> | 2024-07-20 23:30:46 +0200 | 
|---|---|---|
| committer | Folke Lemaitre <folke.lemaitre@gmail.com> | 2024-07-20 23:30:46 +0200 | 
| commit | cb6349c8ae922d1c5745574f4d17b44f2731d451 (patch) | |
| tree | bfaf5a0f13b81dcc055b9aa717dffc2f81378f2d /lua | |
| parent | 79b3f27f5cea8fe6bbb95ba04f93dffa545c5197 (diff) | |
fix: disable lazy checker notify by default
Diffstat (limited to 'lua')
| -rw-r--r-- | lua/config/lazy.lua | 5 | 
1 files changed, 4 insertions, 1 deletions
diff --git a/lua/config/lazy.lua b/lua/config/lazy.lua index 732f55a..d73bfa1 100644 --- a/lua/config/lazy.lua +++ b/lua/config/lazy.lua @@ -31,7 +31,10 @@ 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 = { +    enabled = true, -- check for plugin updates periodically +    notify = false, -- notify on update +  }, -- automatically check for plugin updates    performance = {      rtp = {        -- disable some rtp plugins  | 
