A community driven Mason package registry
Find a file
2025-02-04 09:44:09 -05:00
.github/workflows build: add more CI/CD for the registry from mason-registry 2025-01-29 15:26:45 -05:00
packages feat: update nextflow-language-server (#4) 2025-01-29 15:47:09 -05:00
.editorconfig chore: add .editorconfig file 2025-01-29 15:12:54 -05:00
CONTRIBUTING.md chore: add README and Contribution guidelines 2025-01-29 15:59:15 -05:00
LICENSE Initial commit 2025-01-29 15:11:10 -05:00
README.md docs: add usage instructions 2025-02-04 09:44:09 -05:00
renovate.json5 build: add more CI/CD for the registry from mason-registry 2025-01-29 15:26:45 -05:00
SECURITY.md chore: update security advisory link 2025-01-29 15:42:10 -05:00

AstroNvim Mason Registry

A community driven package registry for mason.nvim

Refer to CONTRIBUTING.md for contribution guidelines.

Compiled registry contents are available via releases.

Usage

To use this registry you simply need to add the string "github:AstroNvim/mason-registry" to the registries list of the mason.nvim configuration that is passed to the require("mason").setup() function.

Lazy.nvim

return {
    "williamboman/mason.nvim",
    opts = {
        registries = {
            -- default Mason registry has highest priority
            "github:mason-org/mason-registry",
            -- Add the AstroNvim mason registry
            "github:AstroNvim/mason-registry",
        },
    },
}