diff options
author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2019-11-23 10:05:59 +0000 |
---|---|---|
committer | GitHub <[email protected]> | 2019-11-23 10:05:59 +0000 |
commit | ee300085c016a5b24ff61e0a1406857d4e638618 (patch) | |
tree | 9e17f0054ed40446ca6311229f581177c6a7ea72 /docs | |
parent | b1821de2c706da525d9818804be522258038f265 (diff) | |
parent | ebdde642873d1a33b375d3491f43bdc185e75427 (diff) |
Merge #2370
2370: Add note about neovim's built in language server r=matklad a=norcalli
I implemented a builtin language server client (`:h lsp.txt`) for neovim and it's been in master since 2019-11-13. We built https://github.com/neovim/nvim-lsp to contain easy configuration settings for servers which we hope to be a database that can be referenced for other editors/3rd party users as well.
Support will be merged very soon https://github.com/neovim/nvim-lsp/pull/43.
Co-authored-by: Ashkan Kiani <[email protected]>
Diffstat (limited to 'docs')
-rw-r--r-- | docs/user/README.md | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/docs/user/README.md b/docs/user/README.md index bfb190449..913ecea18 100644 --- a/docs/user/README.md +++ b/docs/user/README.md | |||
@@ -132,6 +132,11 @@ to load path and require it in `init.el` | |||
132 | 132 | ||
133 | ## Vim and NeoVim | 133 | ## Vim and NeoVim |
134 | 134 | ||
135 | Neovim 0.5 has a built in language server. For a quick start configuration of | ||
136 | rust-analyzer, use [neovim/nvim-lsp](https://github.com/neovim/nvim-lsp#rust_analyzer). | ||
137 | Once `neovim/nvim-lsp` is installed, you can use `call nvim_lsp#setup("rust_analyzer", {})` | ||
138 | or `lua require'nvim_lsp'.rust_analyzer.setup({})` to quickly get set up. | ||
139 | |||
135 | * Install coc.nvim by following the instructions at [coc.nvim] | 140 | * Install coc.nvim by following the instructions at [coc.nvim] |
136 | - You will need nodejs installed. | 141 | - You will need nodejs installed. |
137 | - You may want to include some of the sample vim configurations [from here][coc-vim-conf] | 142 | - You may want to include some of the sample vim configurations [from here][coc-vim-conf] |