File tree 1 file changed +8
-8
lines changed
1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,14 @@ local M = {}
4
4
--- @param spec LazySpec Should be a module name to load , or a plugin spec
5
5
--- @param opts ? LazyConfig
6
6
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
7
15
if not vim .go .loadplugins then
8
16
return
9
17
end
@@ -13,14 +21,6 @@ function M.setup(spec, opts)
13
21
if not pcall (require , " ffi" ) then
14
22
return vim .notify (" lazy.nvim requires Neovim built with LuaJIT" , vim .log .levels .ERROR , { title = " lazy.nvim" })
15
23
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
24
24
local start = vim .loop .hrtime ()
25
25
26
26
if not (opts and opts .performance and opts .performance .cache and opts .performance .cache .enabled == false ) then
You can’t perform that action at this time.
0 commit comments