Skip to content

Commit ae0b220

Browse files
Add racket-langserver installation instructions (#2481)
* Add racket-langserver installation instructions * Update docs/src/language_servers.md * add ``` add ``` because it was stripped. --------- Co-authored-by: Предраг Николић <[email protected]>
1 parent 46171f6 commit ae0b220

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

docs/src/language_servers.md

+18
Original file line numberDiff line numberDiff line change
@@ -484,6 +484,24 @@ Follow installation instructions on [LSP-ruff](https://github.com/sublimelsp/LSP
484484

485485
Follow installation instructions on [R-IDE](https://github.com/REditorSupport/sublime-ide-r#installation).
486486

487+
## Racket
488+
489+
1. Install the [Racket](https://packagecontrol.io/packages/Racket) package from Package Control for syntax highlighting.
490+
2. Follow the instructions for installation at [racket-langserver](https://github.com/jeapostrophe/racket-langserver).
491+
3. Open `Preferences > Package Settings > LSP > Settings` and add the `"racket-langserver"` client configuration to the `"clients"`:
492+
493+
```jsonc
494+
{
495+
"clients": {
496+
"racket-langserver": {
497+
"enabled": true,
498+
"command": ["racket", "-l", "racket-langserver"],
499+
"selector": "source.racket"
500+
}
501+
}
502+
}
503+
```
504+
487505
## Ruby / Ruby on Rails
488506

489507
There are multiple options:

0 commit comments

Comments
 (0)