lazy.nvim/lua/lazy/health.lua

77 lines
1.8 KiB
Lua
Raw Normal View History

2022-12-06 04:31:26 +08:00
local Util = require("lazy.util")
local Config = require("lazy.core.config")
local M = {}
function M.check()
vim.health.report_start("lazy.nvim")
local existing = false
Util.ls(vim.fn.stdpath("data") .. "/site/pack/", function(path)
existing = true
vim.health.report_warn("found existing packages at `" .. path .. "`")
end)
if not existing then
vim.health.report_ok("no existing packages found by other package managers")
end
local packer_compiled = vim.fn.stdpath("config") .. "/plugin/packer_compiled.lua"
if vim.loop.fs_stat(packer_compiled) then
vim.health.report_error("please remove the file `" .. packer_compiled .. "`")
else
vim.health.report_ok("packer_compiled.lua not found")
end
local valid = {
1,
"name",
2022-12-06 18:12:54 +08:00
"url",
2022-12-06 04:31:26 +08:00
"enabled",
"lazy",
"dev",
"dependencies",
"init",
"config",
"build",
"branch",
"tag",
"commit",
"version",
"module",
2022-12-06 04:31:26 +08:00
"pin",
"cmd",
"event",
"keys",
"ft",
"dir",
"priority",
2022-12-29 00:39:51 +08:00
"cond",
2022-12-06 04:31:26 +08:00
"_",
}
local spec = Config.spec
for _, plugin in pairs(spec.plugins) do
2022-12-06 04:31:26 +08:00
for key in pairs(plugin) do
if not vim.tbl_contains(valid, key) then
if key ~= "module" or type(plugin.module) ~= "boolean" then
vim.health.report_warn("{" .. plugin.name .. "}: unknown key <" .. key .. ">")
end
2022-12-06 04:31:26 +08:00
end
end
end
if #spec.notifs > 0 then
vim.health.report_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
vim.health.report_error(line)
else
vim.health.report_warn(line)
end
end
end
end
2022-12-06 04:31:26 +08:00
end
return M