Files
zed/docs/src/languages/elm.md
Vojtěch Hořánek 8bb7a1f9e7 Remove linked_edits issue description from Elm doc (#29350)
The known issue with `linked_edits` seems to be fixed in this PR:
https://github.com/elm-tooling/elm-language-server/pull/1364. This PR
removes the section from Zeds documentation to avoid confusion.

Release Notes:

- Remove known issues section from Elm documentation.
2025-04-24 14:54:12 +00:00

1.3 KiB

Elm

Elm support is available through the Elm extension.

Setup

Zed support for Elm requires installation of elm, elm-format, and elm-review.

  1. Install Elm (or run brew install elm on macOS).
  2. Install elm-review to support code linting:
    npm install elm-review --save-dev
    
  3. Install elm-format to support automatic formatting
    npm install -g elm-format
    

Configuring elm-language-server

Elm language server can be configured in your settings.json, e.g.:

{
  "lsp": {
    "elm-language-server": {
      "initialization_options": {
        "disableElmLSDiagnostics": true,
        "onlyUpdateDiagnosticsOnSave": false,
        "elmReviewDiagnostics": "warning"
      }
    }
  }
}

elm-format, elm-review and elm need to be installed and made available in the environment or configured in the settings. See the full list of server settings here.