mirror of
https://github.com/zed-industries/zed.git
synced 2026-06-01 03:14:56 +07:00
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:
parent
a46858ac21
commit
06b5a150f1
1 changed files with 13 additions and 0 deletions
|
|
@ -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:
|
||||
|
|
|
|||
Loading…
Reference in a new issue