aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWilliam Boman <william@redwill.se>2022-04-28 16:11:58 +0200
committerWilliam Boman <william@redwill.se>2022-04-28 16:12:00 +0200
commit43a200f76b4fe0025ba6e1cd8a131ea04ef31aef (patch)
treee66561e99ed8bce469198c0f98fc259cbda9241f
parentfeat: integrate with lspconfig's on_setup hook (#631) (diff)
downloadmason-43a200f76b4fe0025ba6e1cd8a131ea04ef31aef.tar
mason-43a200f76b4fe0025ba6e1cd8a131ea04ef31aef.tar.gz
mason-43a200f76b4fe0025ba6e1cd8a131ea04ef31aef.tar.bz2
mason-43a200f76b4fe0025ba6e1cd8a131ea04ef31aef.tar.lz
mason-43a200f76b4fe0025ba6e1cd8a131ea04ef31aef.tar.xz
mason-43a200f76b4fe0025ba6e1cd8a131ea04ef31aef.tar.zst
mason-43a200f76b4fe0025ba6e1cd8a131ea04ef31aef.zip
docs: remove Rust Wiki link
With the new setup structure, this is no longer relevant.
-rw-r--r--README.md3
-rw-r--r--doc/nvim-lsp-installer.txt1
2 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index e8d54d45..acde37e9 100644
--- a/README.md
+++ b/README.md
@@ -219,7 +219,7 @@ require("nvim-lsp-installer").setup({
| Reason | `reason_ls` |
| Rome | `rome` |
| Ruby | `solargraph` |
-| Rust [(wiki)][rust_analyzer] | `rust_analyzer` |
+| Rust | `rust_analyzer` |
| SQL | `sqlls` |
| SQL | `sqls` |
| Salt | `salt_ls` |
@@ -252,7 +252,6 @@ require("nvim-lsp-installer").setup({
[eslint]: ./lua/nvim-lsp-installer/servers/eslint/README.md
[tflint]: ./lua/nvim-lsp-installer/servers/tflint/README.md
[pylsp]: ./lua/nvim-lsp-installer/servers/pylsp/README.md
-[rust_analyzer]: https://github.com/williamboman/nvim-lsp-installer/wiki/Rust
## Custom servers
diff --git a/doc/nvim-lsp-installer.txt b/doc/nvim-lsp-installer.txt
index 9f755a76..68e1ec5b 100644
--- a/doc/nvim-lsp-installer.txt
+++ b/doc/nvim-lsp-installer.txt
@@ -57,6 +57,7 @@ to call the `setup()` function _before_ you set up any servers: >
Next, in your initialization files |init.lua|, setup the servers you want to use.
Refer to |lspconfig| for more information! For example: >
+ require("nvim-lsp-installer").setup {}
local lspconfig = require("lspconfig")
local function on_attach(client, bufnr)