Skip to content

Commit 670a6fe

Browse files
committed
fix(manage): better support for using the default colorscheme during install. See #1277
1 parent 2812692 commit 670a6fe

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

lua/lazy/core/loader.lua

+3
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,9 @@ function M.install_missing()
6767
for _, plugin in pairs(Config.plugins) do
6868
if not (plugin._.installed or Plugin.has_errors(plugin)) then
6969
for _, colorscheme in ipairs(Config.options.install.colorscheme) do
70+
if colorscheme == "default" then
71+
break
72+
end
7073
M.colorscheme(colorscheme)
7174
if vim.g.colors_name or pcall(vim.cmd.colorscheme, colorscheme) then
7275
break

0 commit comments

Comments
 (0)