We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
config()
1 parent 48c9b37 commit 49b43deCopy full SHA for 49b43de
lua/lazy/core/loader.lua
@@ -63,7 +63,8 @@ function M.install_missing()
63
for _, plugin in pairs(Config.plugins) do
64
if not (plugin._.installed or Plugin.has_errors(plugin)) then
65
for _, colorscheme in ipairs(Config.options.install.colorscheme) do
66
- if pcall(vim.cmd.colorscheme, colorscheme) then
+ M.colorscheme(colorscheme)
67
+ if vim.g.colors_name or pcall(vim.cmd.colorscheme, colorscheme) then
68
break
69
end
70
0 commit comments