From ac5dc3ac00fd40544531b4f6653fbc8b6ecbbf57 Mon Sep 17 00:00:00 2001 From: Micah Halter Date: Tue, 25 Jul 2023 15:49:31 -0400 Subject: [PATCH] chore: disable lazy loading by default --- lua/config/lazy.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/config/lazy.lua b/lua/config/lazy.lua index e7344d2..6560d84 100644 --- a/lua/config/lazy.lua +++ b/lua/config/lazy.lua @@ -25,7 +25,7 @@ require("lazy").setup { defaults = { -- By default, only AstroNvim plugins will be lazy-loaded. Your custom plugins will load during startup. -- If you know what you're doing, you can set this to `true` to have all your custom plugins lazy-loaded by default. - lazy = true, + lazy = false, }, install = { colorscheme = { "astrodark", "habamax" } }, checker = { enabled = false }, -- automatically check for plugin updates