From 06b5a150f19cb9f92471e0342a863e02f5a068fb Mon Sep 17 00:00:00 2001 From: Dorgan Date: Mon, 30 Mar 2026 13:28:22 -0300 Subject: [PATCH] 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 --- docs/src/languages/elixir.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/docs/src/languages/elixir.md b/docs/src/languages/elixir.md index d592df1805a04df2bc88d0802e03fac2c75883f1..6724ef177900bab07ee4a07ccb0969e401ae5d18 100644 --- a/docs/src/languages/elixir.md +++ b/docs/src/languages/elixir.md @@ -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: