feat: include versioning

This commit is contained in:
Barrett Ruth 2025-09-13 00:39:53 -05:00
parent 6a7ade554e
commit f13a05c806
6 changed files with 60 additions and 29 deletions

View file

@ -75,7 +75,13 @@ local function check_config()
end
function M.check()
local version = require("cp.version")
vim.health.start("cp.nvim health check")
vim.health.info("Version: " .. version.version)
if version.semver then
vim.health.info("Semantic version: v" .. version.semver.full)
end
check_nvim_version()
check_uv()