File tree 1 file changed +11
-7
lines changed
1 file changed +11
-7
lines changed Original file line number Diff line number Diff line change @@ -4,18 +4,22 @@ 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 .fn .has (" nvim-0.8.0" ) ~= 1 then
8
- vim .notify (" lazy.nvim requires Neovim >= 0.8.0" , vim .log .levels .ERROR , { title = " lazy.nvim" })
9
- return
10
- end
11
7
if not vim .go .loadplugins then
12
8
return
13
9
end
10
+ if vim .fn .has (" nvim-0.8.0" ) ~= 1 then
11
+ return vim .notify (" lazy.nvim requires Neovim >= 0.8.0" , vim .log .levels .ERROR , { title = " lazy.nvim" })
12
+ end
13
+ if not pcall (require , " ffi" ) then
14
+ return vim .notify (" lazy.nvim requires Neovim built with LuaJIT" , vim .log .levels .ERROR , { title = " lazy.nvim" })
15
+ end
14
16
if vim .g .lazy_did_setup then
15
- vim .notify (" Re-sourcing your config is not supported with lazy.nvim" , vim .log .levels .WARN , { title = " lazy.nvim" })
16
- return
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
+ )
17
22
end
18
-
19
23
vim .g .lazy_did_setup = true
20
24
local start = vim .loop .hrtime ()
21
25
You can’t perform that action at this time.
0 commit comments