Skip to content

Commit

Permalink
fix: make missing null-ls in checkhealth just an info
Browse files Browse the repository at this point in the history
  • Loading branch information
saecki committed Oct 4, 2023
1 parent 6b63fbf commit f14f156
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lua/crates/health.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down
2 changes: 1 addition & 1 deletion teal/crates/health.tl
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down

0 comments on commit f14f156

Please sign in to comment.