A Neovim plugin to filter messages displayed in :checkhealth.
{
"Luiz-Filipe26/health-check-filter.nvim",
opts = {
blocked_exacts = {
"Go: not available",
"RubyGem not found",
},
blocked_patterns = {
"Composer",
"^cargo",
},
custom_filter = function(msg)
return msg:match("experimental") ~= nil
end,
},
}
- blocked_exacts (optional): array of exact strings.
- blocked_patterns (optional): array of Lua patterns.
- custom_filter (optional): a function (msg: string) -> boolean.
You can provide any combination of these options, all are optional.