diff options
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -23,9 +23,10 @@ useful IDE experience and some people use it as a daily driver. | |||
23 | To build rust-analyzer, you need: | 23 | To build rust-analyzer, you need: |
24 | 24 | ||
25 | * latest stable rust for language server itself | 25 | * latest stable rust for language server itself |
26 | * latest stable npm and VS Code for VS Code extension (`code` should be in path) | 26 | * latest stable npm and VS Code for VS Code extension |
27 | 27 | ||
28 | For setup for other editors, see [./docs/user](./docs/user). | 28 | To quickly install rust-analyzer with VS Code extension with standard setup |
29 | (`code` and `cargo` in `$PATH`, etc), use this: | ||
29 | 30 | ||
30 | ``` | 31 | ``` |
31 | # clone the repo | 32 | # clone the repo |
@@ -37,6 +38,9 @@ $ cargo install-ra | |||
37 | # alternatively, install only the server. Binary name is `ra_lsp_server`. | 38 | # alternatively, install only the server. Binary name is `ra_lsp_server`. |
38 | $ cargo install-ra --server | 39 | $ cargo install-ra --server |
39 | ``` | 40 | ``` |
41 | |||
42 | For non-standard setup of VS Code and other editors, see [./docs/user](./docs/user). | ||
43 | |||
40 | ## Documentation | 44 | ## Documentation |
41 | 45 | ||
42 | If you want to **contribute** to rust-analyzer or just curious about how things work | 46 | If you want to **contribute** to rust-analyzer or just curious about how things work |