Skip to content

Commit c0d3617

Browse files
committed
feat: check if ffi is available and error if not
1 parent 0f62ec0 commit c0d3617

File tree

1 file changed

+11
-7
lines changed

1 file changed

+11
-7
lines changed

lua/lazy/init.lua

+11-7
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,22 @@ 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.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
117
if not vim.go.loadplugins then
128
return
139
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
1416
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+
)
1722
end
18-
1923
vim.g.lazy_did_setup = true
2024
local start = vim.loop.hrtime()
2125

0 commit comments

Comments
 (0)