Skip to content

Commit 6fdd904

Browse files
committed
fix(config): determine headless only during startup. Fixes #1608
1 parent 0f2786b commit 6fdd904

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lua/lazy/core/config.lua

+2-1
Original file line numberDiff line numberDiff line change
@@ -253,8 +253,9 @@ M.mapleader = nil
253253
---@type string
254254
M.maplocalleader = nil
255255

256+
local headless = #vim.api.nvim_list_uis() == 0
256257
function M.headless()
257-
return #vim.api.nvim_list_uis() == 0
258+
return headless
258259
end
259260

260261
---@param opts? LazyConfig

0 commit comments

Comments
 (0)