summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorpommicket <pommicket@gmail.com>2022-12-29 18:51:49 -0500
committerpommicket <pommicket@gmail.com>2022-12-29 18:51:49 -0500
commit43eea17544e4bed4384c76d3d95be2c0688b9e27 (patch)
tree5735d69c3673b03f503f70f4c672a9f5dd3b6e48 /README.md
parentd77782564bf0a090a4e7fa4f4c4bb685383275dc (diff)
little things
Diffstat (limited to 'README.md')
-rw-r--r--README.md11
1 files changed, 9 insertions, 2 deletions
diff --git a/README.md b/README.md
index b3ab8aa..60677b9 100644
--- a/README.md
+++ b/README.md
@@ -145,7 +145,7 @@ to include the absolute path if not).
[clangd](https://clangd.llvm.org/installation)
is enabled by default. On Debian/Ubuntu you can install it with:
-```
+```bash
sudo apt install clangd-15 # replace 15 with the highest number you can get
sudo ln -s /usr/bin/clangd-15 /usr/bin/clangd
```
@@ -180,6 +180,13 @@ You can download it [here](https://github.com/python-lsp/python-lsp-server).
`rust-analyzer` is enabled by default. You can download it
by following [the instructions here](https://rust-analyzer.github.io/manual.html#rust-analyzer-language-server-binary).
+On Linux you can install it with:
+
+```bash
+mkdir -p ~/.local/bin
+curl -L https://github.com/rust-lang/rust-analyzer/releases/latest/download/rust-analyzer-x86_64-unknown-linux-gnu.gz | gunzip -c - > ~/.local/bin/rust-analyzer
+chmod +x ~/.local/bin/rust-analyzer
+```
## Tags (lightweight LSP alternative)
@@ -204,7 +211,7 @@ To install `ted` from source on Linux, you will also need:
These can be installed on Ubuntu/Debian with:
-```
+```bash
sudo apt install clang libsdl2-dev cmake
```