Skip to content

Commit 6404d42

Browse files
committed
fix: move re-sourcing check to the top
1 parent ddf36d7 commit 6404d42

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

lua/lazy/init.lua

+8-8
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,14 @@ local M = {}
44
---@param spec LazySpec Should be a module name to load, or a plugin spec
55
---@param opts? LazyConfig
66
function M.setup(spec, opts)
7+
if vim.g.lazy_did_setup then
8+
return vim.notify(
9+
"Re-sourcing your config is not supported with lazy.nvim",
10+
vim.log.levels.WARN,
11+
{ title = "lazy.nvim" }
12+
)
13+
end
14+
vim.g.lazy_did_setup = true
715
if not vim.go.loadplugins then
816
return
917
end
@@ -13,14 +21,6 @@ function M.setup(spec, opts)
1321
if not pcall(require, "ffi") then
1422
return vim.notify("lazy.nvim requires Neovim built with LuaJIT", vim.log.levels.ERROR, { title = "lazy.nvim" })
1523
end
16-
if vim.g.lazy_did_setup then
17-
return vim.notify(
18-
"Re-sourcing your config is not supported with lazy.nvim",
19-
vim.log.levels.WARN,
20-
{ title = "lazy.nvim" }
21-
)
22-
end
23-
vim.g.lazy_did_setup = true
2424
local start = vim.loop.hrtime()
2525

2626
if not (opts and opts.performance and opts.performance.cache and opts.performance.cache.enabled == false) then

0 commit comments

Comments
 (0)