From e3ee51b6680a116649da56f6c651d53c3e47be4e Mon Sep 17 00:00:00 2001 From: Folke Lemaitre Date: Mon, 24 Jun 2024 19:44:22 +0200 Subject: [PATCH] fix(health): show missing luarocks as warning --- lua/lazy/health.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/lazy/health.lua b/lua/lazy/health.lua index 42d7f62..3bfc3f5 100644 --- a/lua/lazy/health.lua +++ b/lua/lazy/health.lua @@ -21,7 +21,7 @@ function M.check() if vim.fn.executable("luarocks") == 1 then ok("'luarocks' installed") else - error("'luarocks' not installed") + warn("'luarocks' not installed") end local sites = vim.opt.packpath:get()