Skip to content

Commit 49b43de

Browse files
committed
fix(install): dont load the colorscheme again if a config() of the colorscheme also loads it. Fixes #488
1 parent 48c9b37 commit 49b43de

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lua/lazy/core/loader.lua

+2-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,8 @@ function M.install_missing()
6363
for _, plugin in pairs(Config.plugins) do
6464
if not (plugin._.installed or Plugin.has_errors(plugin)) then
6565
for _, colorscheme in ipairs(Config.options.install.colorscheme) do
66-
if pcall(vim.cmd.colorscheme, colorscheme) then
66+
M.colorscheme(colorscheme)
67+
if vim.g.colors_name or pcall(vim.cmd.colorscheme, colorscheme) then
6768
break
6869
end
6970
end

0 commit comments

Comments
 (0)