docs: Add instructions for custom Expert builds (#52746)

Adds a section on how to configure Zed to use a custom Expert build.

There's already [*some*
docs](https://zed.dev/docs/configuring-languages#possible-configuration-options)
on how to do this, but I think it's important to make it clear that the
`--stdio` flag is also required for expert.

Release Notes:

- N/A
This commit is contained in:
Dorgan 2026-03-30 13:28:22 -03:00 committed by GitHub
parent a46858ac21
commit 06b5a150f1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -80,6 +80,19 @@ The following example sets the minimum number of characters required for a proje
See the [Expert configuration](https://expert-lsp.org/docs/configuration/) page for all available options.
To use a custom Expert build, add the following to your settings file:
```json [settings]
"lsp": {
"expert": {
"binary": {
"path": "/path/to/expert",
"arguments": ["--stdio"]
}
}
}
```
### Using Next LS
Enable Next LS by adding the following to your settings file: