https://github.com/astronvim/mason-registry
A community driven Mason package registry
https://github.com/astronvim/mason-registry
Last synced: 17 days ago
JSON representation
A community driven Mason package registry
- Host: GitHub
- URL: https://github.com/astronvim/mason-registry
- Owner: AstroNvim
- License: gpl-3.0
- Created: 2025-01-29T20:11:10.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-12-19T16:46:20.000Z (about 2 months ago)
- Last Synced: 2025-12-22T06:49:08.996Z (about 2 months ago)
- Size: 37.1 KB
- Stars: 2
- Watchers: 0
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Security: SECURITY.md
Awesome Lists containing this project
README
# AstroNvim Mason Registry
A community driven package registry for mason.nvim
Refer to [CONTRIBUTING.md](./CONTRIBUTING.md) for contribution guidelines.
Compiled registry contents are available via [releases](https://github.com/mason-org/mason-registry/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**
```lua
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",
},
},
}
```