We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 39c4770 commit 9b5cc1bCopy full SHA for 9b5cc1b
lua/lazy/health.lua
@@ -5,6 +5,12 @@ local M = {}
5
function M.check()
6
vim.health.report_start("lazy.nvim")
7
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
+
14
local sites = vim.opt.packpath:get()
15
local default_site = vim.fn.stdpath("data") .. "/site"
16
if not vim.tbl_contains(sites, default_site) then
0 commit comments