diff --git a/lua/crates/health.lua b/lua/crates/health.lua index fc0a8839..e3813b1a 100644 --- a/lua/crates/health.lua +++ b/lua/crates/health.lua @@ -13,7 +13,7 @@ function M.check() if util.lualib_installed("null-ls") then vim.health.ok("null-ls.nvim installed") else - vim.health.warn("null-ls.nvim not found") + vim.health.info("null-ls.nvim not found") end vim.health.start("Checking external dependencies") diff --git a/teal/crates/health.tl b/teal/crates/health.tl index 877b25b5..a8cf7231 100644 --- a/teal/crates/health.tl +++ b/teal/crates/health.tl @@ -13,7 +13,7 @@ function M.check() if util.lualib_installed("null-ls") then vim.health.ok("null-ls.nvim installed") else - vim.health.warn("null-ls.nvim not found") + vim.health.info("null-ls.nvim not found") end vim.health.start("Checking external dependencies")