]> git.rmz.io Git - dotfiles.git/blobdiff - nvim/lua/config/lazy.lua
nvim/lazy: do not notify about plugin updates
[dotfiles.git] / nvim / lua / config / lazy.lua
index 891b1901b7bf269295d7a3717cdb9e744de5ef86..1eebb56f09128b9802cf31c5045ec2d7e7ac78a2 100644 (file)
@@ -27,9 +27,15 @@ 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
+      reset = false,
       -- disable some rtp plugins
       disabled_plugins = {
         "gzip",