···11+local health = {}
22+33+health.check = function()
44+ vim.health.start("artio")
55+66+ if not vim.g.loaded_artio then
77+ vim.health.error("artio.nvim not loaded")
88+ end
99+1010+ if _G["MiniIcons"] then
1111+ vim.health.ok("mini.icons support")
1212+ else
1313+ vim.health.warn([[
1414+ mini.icons support not found
1515+ make sure you have mini.nvim installed and configured using `require('mini.icons').setup()`.]])
1616+ end
1717+end
1818+1919+return health