minimal extui fuzzy finder for neovim
at main 23 lines 540 B view raw
1local health = {} 2 3health.check = function() 4 vim.health.start("artio") 5 6 if not vim.g.loaded_artio then 7 vim.health.error("artio.nvim not loaded") 8 end 9 10 if not vim.tbl_get(require("vim._core.ui2") or {}, "cfg", "enable") then 11 vim.health.error("ui2 not enabled") 12 end 13 14 if _G["MiniIcons"] then 15 vim.health.ok("mini.icons support") 16 else 17 vim.health.warn([[ 18 mini.icons support not found 19 make sure you have mini.nvim installed and configured using `require('mini.icons').setup()`.]]) 20 end 21end 22 23return health