@@ -116,6 +116,8 @@ M.me = nil
116
116
--- @type string
117
117
M .mapleader = nil
118
118
119
+ M .headless = # vim .api .nvim_list_uis () == 0
120
+
119
121
--- @param spec LazySpec
120
122
--- @param opts ? LazyConfig
121
123
function M .setup (spec , opts )
@@ -153,22 +155,26 @@ function M.setup(spec, opts)
153
155
vim .go .loadplugins = false
154
156
M .mapleader = vim .g .mapleader
155
157
156
- vim .api .nvim_create_autocmd (" User" , {
157
- pattern = " VeryLazy" ,
158
- once = true ,
159
- callback = function ()
160
- require (" lazy.core.cache" ).autosave ()
161
- require (" lazy.view" ).setup ()
162
- if M .options .change_detection .enabled then
163
- require (" lazy.manage.reloader" ).enable ()
164
- end
165
- if M .options .checker .enabled then
166
- vim .defer_fn (function ()
167
- require (" lazy.manage.checker" ).start ()
168
- end , 10 )
169
- end
170
- end ,
171
- })
158
+ if M .headless then
159
+ require (" lazy.view.commands" ).setup ()
160
+ else
161
+ vim .api .nvim_create_autocmd (" User" , {
162
+ pattern = " VeryLazy" ,
163
+ once = true ,
164
+ callback = function ()
165
+ require (" lazy.core.cache" ).autosave ()
166
+ require (" lazy.view.commands" ).setup ()
167
+ if M .options .change_detection .enabled then
168
+ require (" lazy.manage.reloader" ).enable ()
169
+ end
170
+ if M .options .checker .enabled then
171
+ vim .defer_fn (function ()
172
+ require (" lazy.manage.checker" ).start ()
173
+ end , 10 )
174
+ end
175
+ end ,
176
+ })
177
+ end
172
178
173
179
Util .very_lazy ()
174
180
end
0 commit comments