aboutsummaryrefslogtreecommitdiffstats
path: root/lua
diff options
context:
space:
mode:
authorWilliam Boman <william@redwill.se>2023-03-19 08:36:30 +0100
committerGitHub <noreply@github.com>2023-03-19 08:36:30 +0100
commitcc0582694e3a665a3e41450d8c9e6c6071dd882b (patch)
tree818826364eef060576ee230ae0b449aef8cbdeb7 /lua
parentfeat: add openedge-language-server (#1108) (diff)
downloadmason-cc0582694e3a665a3e41450d8c9e6c6071dd882b.tar
mason-cc0582694e3a665a3e41450d8c9e6c6071dd882b.tar.gz
mason-cc0582694e3a665a3e41450d8c9e6c6071dd882b.tar.bz2
mason-cc0582694e3a665a3e41450d8c9e6c6071dd882b.tar.lz
mason-cc0582694e3a665a3e41450d8c9e6c6071dd882b.tar.xz
mason-cc0582694e3a665a3e41450d8c9e6c6071dd882b.tar.zst
mason-cc0582694e3a665a3e41450d8c9e6c6071dd882b.zip
feat: add github:mason-org/mason-registry as the secondary default registry (#1111)
The current, and henceforth deprecated, Lua-based package registry bundled with `mason.nvim` is still the primary registry. The [new registry](https://github.com/mason-org/mason-registry/) is being added now as a secondary registry to ensure a smooth roll-out. Over time, the Lua-based packages in `mason.nvim` will gradually be removed and replaced by packages provided by the new registry. This migration will be entirely seamless.
Diffstat (limited to 'lua')
-rw-r--r--lua/mason/settings.lua1
1 files changed, 1 insertions, 0 deletions
diff --git a/lua/mason/settings.lua b/lua/mason/settings.lua
index fe93eedc..70b7c335 100644
--- a/lua/mason/settings.lua
+++ b/lua/mason/settings.lua
@@ -27,6 +27,7 @@ local DEFAULT_SETTINGS = {
-- multiple registries, the registry listed first will be used.
registries = {
"lua:mason-registry.index",
+ "github:mason-org/mason-registry",
},
-- The provider implementations to use for resolving supplementary package metadata (e.g., all available versions).