Skip to content

Commit ec858db

Browse files
committed
fix: temporary colorscheme should only load when installing
1 parent 7ec65e4 commit ec858db

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

lua/lazy/core/loader.lua

+5-6
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,13 @@ function M.setup()
1111
-- install missing plugins
1212
if Config.options.install.missing then
1313
Util.track("install")
14-
for _, colorscheme in ipairs(Config.options.install.colorscheme) do
15-
if pcall(vim.cmd.colorscheme, colorscheme) then
16-
break
17-
end
18-
end
1914
for _, plugin in pairs(Config.plugins) do
2015
if not plugin._.installed then
21-
vim.cmd("do User LazyInstallPre")
16+
for _, colorscheme in ipairs(Config.options.install.colorscheme) do
17+
if pcall(vim.cmd.colorscheme, colorscheme) then
18+
break
19+
end
20+
end
2221
require("lazy.manage").install({ wait = true })
2322
break
2423
end

0 commit comments

Comments
 (0)