aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.github/ISSUE_TEMPLATE/config.yml2
-rw-r--r--.github/ISSUE_TEMPLATE/feature_request.yaml2
-rw-r--r--.github/ISSUE_TEMPLATE/server_issue.yaml2
-rw-r--r--Makefile2
-rw-r--r--README.md10
5 files changed, 9 insertions, 9 deletions
diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml
index 70db94b..c8be312 100644
--- a/.github/ISSUE_TEMPLATE/config.yml
+++ b/.github/ISSUE_TEMPLATE/config.yml
@@ -1,4 +1,4 @@
contact_links:
- name: Ask a question about mason.nvim or get support
- url: https://github.com/williamboman/mason.nvim/discussions/new?category=q-a
+ url: https://github.com/mason-org/mason.nvim/discussions/new?category=q-a
about: Ask a question or request support for using mason.nvim
diff --git a/.github/ISSUE_TEMPLATE/feature_request.yaml b/.github/ISSUE_TEMPLATE/feature_request.yaml
index de4fe3a..4a729a2 100644
--- a/.github/ISSUE_TEMPLATE/feature_request.yaml
+++ b/.github/ISSUE_TEMPLATE/feature_request.yaml
@@ -7,7 +7,7 @@ body:
- type: markdown
attributes:
value: |
- 👋! This is not an issue template for questions! If you have questions, please refer to https://github.com/williamboman/mason.nvim/discussions/categories/q-a :)
+ 👋! This is not an issue template for questions! If you have questions, please refer to https://github.com/mason-org/mason.nvim/discussions/categories/q-a :)
Before filing an issue, make sure that you meet the minimum requirements mentioned in the README.
diff --git a/.github/ISSUE_TEMPLATE/server_issue.yaml b/.github/ISSUE_TEMPLATE/server_issue.yaml
index 4a92890..8dbc7c5 100644
--- a/.github/ISSUE_TEMPLATE/server_issue.yaml
+++ b/.github/ISSUE_TEMPLATE/server_issue.yaml
@@ -7,7 +7,7 @@ body:
- type: markdown
attributes:
value: |
- 👋! This is not an issue template for questions! If you have questions, please refer to https://github.com/williamboman/mason.nvim/discussions/categories/q-a :)
+ 👋! This is not an issue template for questions! If you have questions, please refer to https://github.com/mason-org/mason.nvim/discussions/categories/q-a :)
Before filing an issue, make sure that you meet the minimum requirements mentioned in the README
diff --git a/Makefile b/Makefile
index 4ab12f9..12f8e55 100644
--- a/Makefile
+++ b/Makefile
@@ -2,7 +2,7 @@ INSTALL_ROOT_DIR:=$(shell pwd)/tests/fixtures/mason
NVIM_HEADLESS:=nvim --headless --noplugin -u tests/minimal_init.vim
dependencies:
- git clone --depth 1 https://github.com/williamboman/mason.nvim dependencies/pack/vendor/start/mason.nvim
+ git clone --depth 1 https://github.com/mason-org/mason.nvim dependencies/pack/vendor/start/mason.nvim
git clone --depth 1 https://github.com/nvim-lua/plenary.nvim dependencies/pack/vendor/start/plenary.nvim
git clone --depth 1 https://github.com/neovim/nvim-lspconfig dependencies/pack/vendor/start/nvim-lspconfig
git clone --depth 1 https://github.com/nvim-neotest/neotest dependencies/pack/vendor/start/neotest
diff --git a/README.md b/README.md
index 12aede4..011d76c 100644
--- a/README.md
+++ b/README.md
@@ -8,7 +8,7 @@
<p align="center">
<code>mason-lspconfig</code> bridges <a
- href="https://github.com/williamboman/mason.nvim"><code>mason.nvim</code></a> with the <a
+ href="https://github.com/mason-org/mason.nvim"><code>mason.nvim</code></a> with the <a
href="https://github.com/neovim/nvim-lspconfig"><code>lspconfig</code></a> plugin - making it easier to use both
plugins together.
</p>
@@ -61,8 +61,8 @@ This plugin's main responsibilities are to:
```lua
{
- "williamboman/mason.nvim",
- "williamboman/mason-lspconfig.nvim",
+ "mason-org/mason.nvim",
+ "mason-org/mason-lspconfig.nvim",
"neovim/nvim-lspconfig",
}
```
@@ -70,8 +70,8 @@ This plugin's main responsibilities are to:
## vim-plug
```vim
-Plug 'williamboman/mason.nvim'
-Plug 'williamboman/mason-lspconfig.nvim'
+Plug 'mason-org/mason.nvim'
+Plug 'mason-org/mason-lspconfig.nvim'
Plug 'neovim/nvim-lspconfig'
```