From e91499586ae1ec8299ed6a387a7858f427226faa Mon Sep 17 00:00:00 2001 From: yeti Date: Thu, 17 Apr 2025 18:34:12 +0100 Subject: [PATCH] feat(nvim): disable fetching missing updates --- config/nvim/lua/config/lazy.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/nvim/lua/config/lazy.lua b/config/nvim/lua/config/lazy.lua index 36db196..7bd711f 100644 --- a/config/nvim/lua/config/lazy.lua +++ b/config/nvim/lua/config/lazy.lua @@ -30,7 +30,7 @@ require("lazy").setup({ version = false, -- always use the latest git commit -- version = "*", -- try installing the latest stable version for plugins that support semver }, - install = { colorscheme = { "tokyonight", "habamax" } }, + install = { missing = false, colorscheme = { "tokyonight", "habamax" } }, checker = { enabled = false, -- check for plugin updates periodically notify = false, -- notify on update