Skip to repository content

tenant.openagents/omega

No repository description is available.

OpenAgents Git authority 2026-07-28T03:31:39.439Z 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/gleam.md

1.7 KB

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

Gleam

Gleam support is available through the Gleam extension. To learn about Gleam, see the docs or check out the stdlib reference. The Gleam language server has a variety of features, including go-to definition, automatic imports, and more.

Using the Tailwind CSS Language Server with Gleam

To get all the features (autocomplete, linting, etc.) from the Tailwind CSS language server in Gleam files, you need to enable the language server for Gleam and configure where it should look for CSS classes by adding the following to your settings.json:

{
  "languages": {
    "Gleam": {
      "language_servers": ["tailwindcss-language-server", "..."]
    }
  },
  "lsp": {
    "tailwindcss-language-server": {
      "settings": {
        "experimental": {
          "classRegex": ["\"([^\"]*)\""]
        }
      }
    }
  }
}

This works with plain string literals and with Lustre view templates where class names are passed as string arguments.

See also:

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