aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDave Lage <rockerboo@gmail.com>2020-09-12 11:52:30 -0400
committerGitHub <noreply@github.com>2020-09-12 17:52:30 +0200
commit97c03227c82f3a219ee19beb82b3835838e4f9d0 (patch)
tree29d40e332ff110719754b8b73e5ad19a4231b956
parentb23907e7ce8b4cf6e7e95abd3379bcae6715af7b (diff)
downloadrneovim-97c03227c82f3a219ee19beb82b3835838e4f9d0.tar.gz
rneovim-97c03227c82f3a219ee19beb82b3835838e4f9d0.tar.bz2
rneovim-97c03227c82f3a219ee19beb82b3835838e4f9d0.zip
docs: Use nvim-lspconfig plugin in lsp docs (#12885)
* docs: Use nvim-lspconfig plugin in lsp docs
-rw-r--r--runtime/doc/lsp.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/runtime/doc/lsp.txt b/runtime/doc/lsp.txt
index 0300ba55b3..b32775bc82 100644
--- a/runtime/doc/lsp.txt
+++ b/runtime/doc/lsp.txt
@@ -23,14 +23,14 @@ QUICKSTART *lsp-quickstart*
Nvim provides a LSP client, but the servers are provided by third parties.
Follow these steps to get LSP features:
- 1. Install the nvim-lsp plugin. It provides common configuration for
+ 1. Install the nvim-lspconfig plugin. It provides common configuration for
various servers so you can get started quickly.
- https://github.com/neovim/nvim-lsp
+ https://github.com/neovim/nvim-lspconfig
2. Install a language server. Try ":LspInstall <tab>" or use your system
package manager to install the relevant language server:
https://microsoft.github.io/language-server-protocol/implementors/servers/
3. Add `nvim_lsp.xx.setup{…}` to your vimrc, where "xx" is the name of the
- relevant config. See the nvim-lsp README for details.
+ relevant config. See the nvim-lspconfig README for details.
To check LSP clients attached to the current buffer: >