🐻 minimal ui2 fuzzy finder for Neovim codeberg.org/comfysage/artio.nvim
3
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat: add `:checkhealth` module

robin ae1e1af4 ff6cffcb

+19
+19
lua/artio/health.lua
··· 1 + local health = {} 2 + 3 + health.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 _G["MiniIcons"] then 11 + vim.health.ok("mini.icons support") 12 + else 13 + vim.health.warn([[ 14 + mini.icons support not found 15 + make sure you have mini.nvim installed and configured using `require('mini.icons').setup()`.]]) 16 + end 17 + end 18 + 19 + return health