aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorMichael Lingelbach <m.j.lbach@gmail.com>2021-11-27 09:01:30 -0500
committerGitHub <noreply@github.com>2021-11-27 09:01:30 -0500
commitd52e45acf9a55b025ce9c0161b922a814b65b631 (patch)
tree4a1b3c54f46fa9b95c4e7ceaededa112ef4b9e18 /README.md
parentdocs: update server_configurations.md (diff)
downloadnvim-lspconfig-d52e45acf9a55b025ce9c0161b922a814b65b631.tar
nvim-lspconfig-d52e45acf9a55b025ce9c0161b922a814b65b631.tar.gz
nvim-lspconfig-d52e45acf9a55b025ce9c0161b922a814b65b631.tar.bz2
nvim-lspconfig-d52e45acf9a55b025ce9c0161b922a814b65b631.tar.lz
nvim-lspconfig-d52e45acf9a55b025ce9c0161b922a814b65b631.tar.xz
nvim-lspconfig-d52e45acf9a55b025ce9c0161b922a814b65b631.tar.zst
nvim-lspconfig-d52e45acf9a55b025ce9c0161b922a814b65b631.zip
docs: make |lspconfig-server-configurations| jump to the markdown file (#1497)
* generating the tags at docgen and modifying the |lspconfig-server-configurations| tag allows `:help lspconfig-server-configurations` take you to ./doc/server_configurations.md * adding a modeline to the markdown file ensures it sets the correct filetype Co-authored-by: Javier López <graulopezjavier@gmail.com>
Diffstat (limited to 'README.md')
-rw-r--r--README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index d747d9c5..5f182300 100644
--- a/README.md
+++ b/README.md
@@ -41,7 +41,7 @@ These features are not implemented in this repo, but in Neovim core. See `:help
npm i -g pyright
```
-2. Add the language server setup to your init.vim. The server name must match those found in the table of contents in [server_configurations.md](doc/server_configurations.md)
+2. Add the language server setup to your init.vim. The server name must match those found in the table of contents in [server_configurations.md](doc/server_configurations.md). This list is also accessible via `:help lspconfig-server-configurations`.
```lua
lua << EOF
@@ -82,7 +82,7 @@ require'lspconfig'.rust_analyzer.setup{}
EOF
```
-For a full list of servers, see [server_configurations.md](doc/server_configurations.md). This document contains installation instructions and additional, optional customization suggestions for each language server. For some servers that are not on your system path (jdtls, elixirls) you will be required to manually add `cmd` as an entry in the table passed to setup. Most language servers can be installed in less than a minute.
+For a full list of servers, see [server_configurations.md](doc/server_configurations.md) or `:help lspconfig-server-configurations`. This document contains installation instructions and additional, optional, customization suggestions for each language server. For some servers that are not on your system path (e.g., `jdtls`, `elixirls`), you will be required to manually add `cmd` as an entry in the table passed to `setup`. Most language servers can be installed in less than a minute.
## Keybindings and completion