Skip to content

Commit 7b9b476

Browse files
committed
fix(install): make sure to setup loaders before attempting install so colorscheme can load. Fixes #122
1 parent e5dcc87 commit 7b9b476

File tree

1 file changed

+17
-17
lines changed

1 file changed

+17
-17
lines changed

lua/lazy/core/loader.lua

+17-17
Original file line numberDiff line numberDiff line change
@@ -11,23 +11,6 @@ M.init_done = false
1111
M.disabled_rtp_plugins = { packer_compiled = true }
1212

1313
function M.setup()
14-
-- install missing plugins
15-
if Config.options.install.missing then
16-
Util.track("install")
17-
for _, plugin in pairs(Config.plugins) do
18-
if not plugin._.installed then
19-
for _, colorscheme in ipairs(Config.options.install.colorscheme) do
20-
if pcall(vim.cmd.colorscheme, colorscheme) then
21-
break
22-
end
23-
end
24-
require("lazy.manage").install({ wait = true })
25-
break
26-
end
27-
end
28-
Util.track()
29-
end
30-
3114
-- setup handlers
3215
Util.track("handlers")
3316
Handler.setup()
@@ -45,6 +28,23 @@ function M.setup()
4528

4629
-- autoload opt plugins
4730
table.insert(package.loaders, M.autoload)
31+
32+
-- install missing plugins
33+
if Config.options.install.missing then
34+
Util.track("install")
35+
for _, plugin in pairs(Config.plugins) do
36+
if not plugin._.installed then
37+
for _, colorscheme in ipairs(Config.options.install.colorscheme) do
38+
if pcall(vim.cmd.colorscheme, colorscheme) then
39+
break
40+
end
41+
end
42+
require("lazy.manage").install({ wait = true })
43+
break
44+
end
45+
end
46+
Util.track()
47+
end
4848
end
4949

5050
-- Startup sequence

0 commit comments

Comments
 (0)