diff --git a/lua/lazy/core/loader.lua b/lua/lazy/core/loader.lua index cfcc136..73bb6a1 100644 --- a/lua/lazy/core/loader.lua +++ b/lua/lazy/core/loader.lua @@ -161,7 +161,7 @@ function M.get_start_plugins() ---@type LazyPlugin[] local start = {} for _, plugin in pairs(Config.plugins) do - if not plugin._.loaded and (plugin._.rtp_loaded or plugin.lazy == false) then + if not plugin._.loaded and (plugin._.rtp_loaded and plugin.lazy == false) then start[#start + 1] = plugin end end