Skip to content

Commit 2e14a2f

Browse files
committed
feat: added support for nvim --headless "+Lazy! sync" +qa
1 parent bc61747 commit 2e14a2f

File tree

2 files changed

+25
-21
lines changed

2 files changed

+25
-21
lines changed

lua/lazy/core/config.lua

+22-16
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,8 @@ M.me = nil
116116
---@type string
117117
M.mapleader = nil
118118

119+
M.headless = #vim.api.nvim_list_uis() == 0
120+
119121
---@param spec LazySpec
120122
---@param opts? LazyConfig
121123
function M.setup(spec, opts)
@@ -153,22 +155,26 @@ function M.setup(spec, opts)
153155
vim.go.loadplugins = false
154156
M.mapleader = vim.g.mapleader
155157

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
172178

173179
Util.very_lazy()
174180
end

lua/lazy/view/init.lua

+3-5
Original file line numberDiff line numberDiff line change
@@ -43,12 +43,10 @@ M.hover = "K"
4343
---@type string?
4444
M.mode = nil
4545

46-
function M.setup()
47-
require("lazy.view.commands").setup()
48-
require("lazy.view.colors").setup()
49-
end
50-
5146
function M.show(mode)
47+
if Config.headless then
48+
return
49+
end
5250
M.mode = mode or M.mode or "home"
5351
require("lazy.view.colors").setup()
5452

0 commit comments

Comments
 (0)