Skip to content

Luiz-Filipe26/health-check-filter.nvim

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 

Repository files navigation

health-check-filter.nvim

A Neovim plugin to filter messages displayed in :checkhealth.

Installation (Lazy.nvim)

{
  "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,
  },
}

Options (opts)

  • 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.

About

Neovim plugin to filter messages displayed in :checkhealth.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages