From 0f45c0d0623b4850716898a5e399c844466690f6 Mon Sep 17 00:00:00 2001 From: Folke Lemaitre Date: Mon, 24 Jun 2024 17:50:27 +0200 Subject: [PATCH] fix(health): added luarocks check to health --- lua/lazy/health.lua | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/lua/lazy/health.lua b/lua/lazy/health.lua index 6202de6..42d7f62 100644 --- a/lua/lazy/health.lua +++ b/lua/lazy/health.lua @@ -13,9 +13,15 @@ function M.check() start("lazy.nvim") if vim.fn.executable("git") == 1 then - ok("Git installed") + ok("'git' installed") else - error("Git not installed?") + error("'git' not installed?") + end + + if vim.fn.executable("luarocks") == 1 then + ok("'luarocks' installed") + else + error("'luarocks' not installed") end local sites = vim.opt.packpath:get()