Skip to content

Commit bad1b1f

Browse files
committed
feat: detect headless and set interactive=false
1 parent 80a2b71 commit bad1b1f

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

lua/lazy/core/config.lua

+4-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,10 @@ function M.setup(opts)
5151
M.paths.plugins = vim.fn.stdpath("config") .. "/lua/" .. M.options.plugins:gsub("%.", "/")
5252
M.paths.main = M.paths.plugins .. (vim.loop.fs_stat(M.paths.plugins .. ".lua") and ".lua" or "/init.lua")
5353

54-
-- vim.fn.mkdir(M.options.package_path, "p")
54+
-- TODO: check what this does inside a GUI. Probably still ok
55+
if #vim.api.nvim_list_uis() == 0 then
56+
M.options.interactive = false
57+
end
5558

5659
vim.api.nvim_create_autocmd("User", {
5760
pattern = "VeryLazy",

0 commit comments

Comments
 (0)