Skip to repository content

tenant.openagents/omega

No repository description is available.

OpenAgents Git authority 2026-07-28T01:37:22.092Z 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/luau.md

1.5 KB

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

Luau

Luau is a fast, small, safe, gradually typed, embeddable scripting language derived from Lua. Luau was developed by Roblox and is available under the MIT license.

Luau language support in Zed is provided by the community-maintained Luau extension. Report issues to: https://github.com/4teapo/zed-luau/issues

Configuration

Configuration instructions are available in the Luau Zed Extension README.

Formatting

To support automatically formatting your code, you can use JohnnyMorganz/StyLua, a Lua code formatter.

Install with:

# macOS via Homebrew
brew install stylua
# Or via Cargo
cargo install stylua --features lua52,lua53,lua54,luau

Configure formatting in Settings ({#kb omega::OpenSettings}) under Languages > Luau, or add to your settings file:

  "languages": {
    "Luau": {
      "formatter": {
        "external": {
          "command": "stylua",
          "arguments": ["-"]
        }
      }
    }
  }
Served at tenant.openagents/omega Member data and write actions are omitted.