mason.nvim icon indicating copy to clipboard operation
mason.nvim copied to clipboard

(feat): add option to ignore non-installed languages in the healthcheck

Open KaspervdHeijden opened this issue 1 year ago • 0 comments

Hi! :wave:

Currently, we get a warning message for every language binary that is not installed. This PR adds the options to "ack" these by adding a setting to be able to ignore a non-installed language.

image

Options to setup:

    {
        health = {
            ignore = {
                'cargo',
                'Go',
                'javac',
                'julia',
                'luarocks',
                'RubyGem',
            },
        },
    }

KaspervdHeijden avatar Apr 10 '24 07:04 KaspervdHeijden