@@ -2,6 +2,7 @@ local Util = require("lazy.core.util")
2
2
local Config = require (" lazy.core.config" )
3
3
local Handler = require (" lazy.core.handler" )
4
4
local Cache = require (" lazy.core.cache" )
5
+ local Plugin = require (" lazy.core.plugin" )
5
6
6
7
local M = {}
7
8
@@ -26,29 +27,52 @@ function M.setup()
26
27
end ,
27
28
})
28
29
30
+ -- load the plugins
31
+ Plugin .load ()
32
+
29
33
-- install missing plugins
30
34
if Config .options .install .missing then
31
35
Util .track (" install" )
32
- for _ , plugin in pairs (Config .plugins ) do
33
- if not plugin ._ .installed then
34
- for _ , colorscheme in ipairs (Config .options .install .colorscheme ) do
35
- if pcall (vim .cmd .colorscheme , colorscheme ) then
36
- break
37
- end
38
- end
39
- require (" lazy.manage" ).install ({ wait = true , lockfile = true })
40
- break
41
- end
36
+ while M .install_missing () do
42
37
end
43
38
Util .track ()
44
39
end
45
40
41
+ -- report any warnings & errors
42
+ Config .spec :report ()
43
+
46
44
-- setup handlers
47
45
Util .track (" handlers" )
48
46
Handler .setup ()
49
47
Util .track ()
50
48
end
51
49
50
+ -- this will incrementally install missing plugins
51
+ -- multiple rounds can happen when importing a spec from a missing plugin
52
+ function M .install_missing ()
53
+ for _ , plugin in pairs (Config .plugins ) do
54
+ if not plugin ._ .installed then
55
+ for _ , colorscheme in ipairs (Config .options .install .colorscheme ) do
56
+ if pcall (vim .cmd .colorscheme , colorscheme ) then
57
+ break
58
+ end
59
+ end
60
+ require (" lazy.manage" ).install ({ wait = true , lockfile = true })
61
+ -- remove and installed plugins from indexed, so cache will index again
62
+ for _ , p in pairs (Config .plugins ) do
63
+ if p ._ .installed then
64
+ Cache .indexed [p .dir ] = nil
65
+ end
66
+ end
67
+ -- clear plugins. no need to merge in this stage
68
+ Config .plugins = {}
69
+ -- reload plugins
70
+ Plugin .load ()
71
+ return true
72
+ end
73
+ end
74
+ end
75
+
52
76
-- Startup sequence
53
77
-- 1. load any start plugins and do init
54
78
function M .startup ()
0 commit comments