Skip to repository content

tenant.openagents/omega

No repository description is available.

OpenAgents Git authority 2026-07-28T03:29:09.256Z Public web read
NIP-34 coordinate30617:7649603503856e5148d571eac2766b288a8ff1e9e35d380337a1d2b0015b4f92:omega
MaintainersHidden in public view
References2 branches · 1 tag
Read-only clonegit clone https://openagents.com/git/tenant.openagents/omega.git
Browse files

docs/src/languages/elm.md

1.4 KB

title: Elm description: "Configure Elm language support in Zed, including language servers, formatting, and debugging."

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.

Served at tenant.openagents/omega Member data and write actions are omitted.