feat(utils): require git in check_required_runtime

This commit is contained in:
Barrett Ruth 2026-03-07 19:46:35 -05:00
parent d1127f3e9b
commit 74f699c5a1
Signed by: barrett
GPG key ID: A6C96C9349D2FC81

View file

@ -366,6 +366,10 @@ function M.check_required_runtime()
return false, timeout.reason
end
if vim.fn.executable('git') ~= 1 then
return false, 'git is required for credential storage'
end
return true
end