2022-12-06 04:31:26 +08:00
|
|
|
local Config = require("lazy.core.config")
|
2024-04-22 16:33:32 +08:00
|
|
|
local uv = vim.uv or vim.loop
|
2022-12-06 04:31:26 +08:00
|
|
|
|
|
|
|
local M = {}
|
|
|
|
|
2023-04-16 20:07:41 +08:00
|
|
|
-- "report_" prefix has been deprecated, use the recommended replacements if they exist.
|
|
|
|
local start = vim.health.start or vim.health.report_start
|
|
|
|
local ok = vim.health.ok or vim.health.report_ok
|
|
|
|
local warn = vim.health.warn or vim.health.report_warn
|
|
|
|
local error = vim.health.error or vim.health.report_error
|
|
|
|
|
2022-12-06 04:31:26 +08:00
|
|
|
function M.check()
|
2023-04-16 20:07:41 +08:00
|
|
|
start("lazy.nvim")
|
2022-12-06 04:31:26 +08:00
|
|
|
|
2023-01-24 15:48:14 +08:00
|
|
|
if vim.fn.executable("git") == 1 then
|
2023-04-16 20:07:41 +08:00
|
|
|
ok("Git installed")
|
2023-01-24 15:48:14 +08:00
|
|
|
else
|
2023-07-16 14:50:53 +08:00
|
|
|
error("Git not installed?")
|
2023-01-24 15:48:14 +08:00
|
|
|
end
|
|
|
|
|
2023-01-04 06:48:00 +08:00
|
|
|
local sites = vim.opt.packpath:get()
|
|
|
|
local default_site = vim.fn.stdpath("data") .. "/site"
|
|
|
|
if not vim.tbl_contains(sites, default_site) then
|
|
|
|
sites[#sites + 1] = default_site
|
|
|
|
end
|
|
|
|
|
2022-12-06 04:31:26 +08:00
|
|
|
local existing = false
|
2023-01-04 06:48:00 +08:00
|
|
|
for _, site in pairs(sites) do
|
|
|
|
for _, packs in ipairs(vim.fn.expand(site .. "/pack/*", false, true)) do
|
2024-04-22 16:33:32 +08:00
|
|
|
if not packs:find("[/\\]dist$") and uv.fs_stat(packs) then
|
2023-01-04 06:48:00 +08:00
|
|
|
existing = true
|
2023-04-16 20:07:41 +08:00
|
|
|
warn("found existing packages at `" .. packs .. "`")
|
2023-01-04 06:48:00 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2022-12-06 04:31:26 +08:00
|
|
|
if not existing then
|
2023-04-16 20:07:41 +08:00
|
|
|
ok("no existing packages found by other package managers")
|
2022-12-06 04:31:26 +08:00
|
|
|
end
|
|
|
|
|
2023-02-28 03:38:05 +08:00
|
|
|
for _, name in ipairs({ "packer", "plugged", "paq" }) do
|
|
|
|
for _, path in ipairs(vim.opt.rtp:get()) do
|
|
|
|
if path:find(name, 1, true) then
|
2023-04-16 20:07:41 +08:00
|
|
|
error("Found paths on the rtp from another plugin manager `" .. name .. "`")
|
2023-02-28 03:38:05 +08:00
|
|
|
break
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2022-12-06 04:31:26 +08:00
|
|
|
local packer_compiled = vim.fn.stdpath("config") .. "/plugin/packer_compiled.lua"
|
2024-04-22 16:33:32 +08:00
|
|
|
if uv.fs_stat(packer_compiled) then
|
2023-04-16 20:07:41 +08:00
|
|
|
error("please remove the file `" .. packer_compiled .. "`")
|
2022-12-06 04:31:26 +08:00
|
|
|
else
|
2023-04-16 20:07:41 +08:00
|
|
|
ok("packer_compiled.lua not found")
|
2022-12-06 04:31:26 +08:00
|
|
|
end
|
|
|
|
|
2023-01-02 16:44:09 +08:00
|
|
|
local spec = Config.spec
|
2023-04-28 00:21:02 +08:00
|
|
|
if spec == nil then
|
2023-10-09 17:25:42 +08:00
|
|
|
error('No plugins loaded. Did you forget to run `require("lazy").setup()`?')
|
2023-04-28 00:21:02 +08:00
|
|
|
else
|
|
|
|
for _, plugin in pairs(spec.plugins) do
|
|
|
|
M.check_valid(plugin)
|
|
|
|
end
|
|
|
|
if #spec.notifs > 0 then
|
|
|
|
error("Issues were reported when loading your specs:")
|
|
|
|
for _, notif in ipairs(spec.notifs) do
|
|
|
|
local lines = vim.split(notif.msg, "\n")
|
|
|
|
for _, line in ipairs(lines) do
|
|
|
|
if notif.level == vim.log.levels.ERROR then
|
|
|
|
error(line)
|
|
|
|
else
|
|
|
|
warn(line)
|
|
|
|
end
|
2023-01-02 16:44:09 +08:00
|
|
|
end
|
2022-12-30 18:52:09 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2022-12-06 04:31:26 +08:00
|
|
|
end
|
|
|
|
|
2023-01-04 16:35:00 +08:00
|
|
|
---@param plugin LazyPlugin
|
|
|
|
function M.check_valid(plugin)
|
|
|
|
for key in pairs(plugin) do
|
|
|
|
if not vim.tbl_contains(M.valid, key) then
|
|
|
|
if key ~= "module" or type(plugin.module) ~= "boolean" then
|
2023-04-16 20:07:41 +08:00
|
|
|
warn("{" .. plugin.name .. "}: unknown key <" .. key .. ">")
|
2023-01-04 16:35:00 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
M.valid = {
|
|
|
|
1,
|
2023-01-08 22:01:49 +08:00
|
|
|
"_",
|
2023-01-04 16:35:00 +08:00
|
|
|
"branch",
|
2023-01-08 22:01:49 +08:00
|
|
|
"build",
|
2023-01-04 16:35:00 +08:00
|
|
|
"cmd",
|
2023-01-08 22:01:49 +08:00
|
|
|
"commit",
|
|
|
|
"cond",
|
|
|
|
"config",
|
2023-02-27 20:42:52 +08:00
|
|
|
"deactivate",
|
2023-01-08 22:01:49 +08:00
|
|
|
"dependencies",
|
|
|
|
"dev",
|
|
|
|
"dir",
|
|
|
|
"enabled",
|
2023-01-04 16:35:00 +08:00
|
|
|
"event",
|
|
|
|
"ft",
|
2023-01-08 22:01:49 +08:00
|
|
|
"import",
|
|
|
|
"init",
|
|
|
|
"keys",
|
|
|
|
"lazy",
|
2023-03-20 15:02:24 +08:00
|
|
|
"main",
|
2023-01-08 22:01:49 +08:00
|
|
|
"module",
|
|
|
|
"name",
|
2023-06-26 13:54:12 +08:00
|
|
|
"optional",
|
2023-01-08 22:01:49 +08:00
|
|
|
"opts",
|
|
|
|
"pin",
|
2023-01-04 16:35:00 +08:00
|
|
|
"priority",
|
2024-01-20 21:49:47 +08:00
|
|
|
"submodules",
|
2023-01-08 22:01:49 +08:00
|
|
|
"tag",
|
|
|
|
"url",
|
|
|
|
"version",
|
2023-01-04 16:35:00 +08:00
|
|
|
}
|
|
|
|
|
2022-12-06 04:31:26 +08:00
|
|
|
return M
|