File tree 1 file changed +17
-17
lines changed
1 file changed +17
-17
lines changed Original file line number Diff line number Diff line change @@ -11,23 +11,6 @@ M.init_done = false
11
11
M .disabled_rtp_plugins = { packer_compiled = true }
12
12
13
13
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
-
31
14
-- setup handlers
32
15
Util .track (" handlers" )
33
16
Handler .setup ()
@@ -45,6 +28,23 @@ function M.setup()
45
28
46
29
-- autoload opt plugins
47
30
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
48
48
end
49
49
50
50
-- Startup sequence
You can’t perform that action at this time.
0 commit comments