Skip to content

Latest commit

 

History

History
31 lines (24 loc) · 1.16 KB

File metadata and controls

31 lines (24 loc) · 1.16 KB

visimp Mason Registry

This project is a mason.nvim package registry by the developers of visimp.

Scope

The visimp Mason registry hosts packages that would not be accepted by the core registry, but are required by some visimp layers. This might include, for example, language servers for obscure languages requiring custom build scripts.

Usage

This registry is active by default on all visimp installations, but other Neovim users can enable it in their mason.nvim configuration (which visimp users can access from their lsp layer configuration).

For example, here is how a user with no Neovim plugin manager would enable the registry (the argument of the setup function is Mason's MasonSettings):

require("mason").setup {
    registries = {
        "github:visimp/mason-registry",
        "github:mason-org/mason-registry"
    }
  }