Skip to content

Commit 9b5cc1b

Browse files
committed
feat(health): check for git in health checks
1 parent 39c4770 commit 9b5cc1b

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

lua/lazy/health.lua

+6
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ local M = {}
55
function M.check()
66
vim.health.report_start("lazy.nvim")
77

8+
if vim.fn.executable("git") == 1 then
9+
vim.health.report_ok("Git installed")
10+
else
11+
vim.health.report_error("Git not installd?")
12+
end
13+
814
local sites = vim.opt.packpath:get()
915
local default_site = vim.fn.stdpath("data") .. "/site"
1016
if not vim.tbl_contains(sites, default_site) then

0 commit comments

Comments
 (0)