aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md8
1 files changed, 6 insertions, 2 deletions
diff --git a/README.md b/README.md
index 50918ee5e..e249c6486 100644
--- a/README.md
+++ b/README.md
@@ -23,9 +23,10 @@ useful IDE experience and some people use it as a daily driver.
23To build rust-analyzer, you need: 23To 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
28For setup for other editors, see [./docs/user](./docs/user). 28To 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
42For non-standard setup of VS Code and other editors, see [./docs/user](./docs/user).
43
40## Documentation 44## Documentation
41 45
42If you want to **contribute** to rust-analyzer or just curious about how things work 46If you want to **contribute** to rust-analyzer or just curious about how things work