Gleam-authored Zed extension (Gleam → Wasm guest) for Gleam LSP + highlighting
1

Configure Feed

Select the types of activity you want to include in your feed.

zed-gleam-native / extension.toml
683 B 24 lines
1id = "gleam" 2name = "Gleam" 3description = "Gleam support (Gleam Wasm guest)." 4version = "0.6.0" 5schema_version = 1 6authors = ["Marshall Bowers <elliott.codes@gmail.com>", "nandi"] 7repository = "https://github.com/gleam-lang/zed-gleam" 8 9[lib] 10# Schema only allows "Rust". Cargo is a build driver for the Gleam guest (build.rs). 11kind = "Rust" 12version = "0.7.0" 13 14[language_servers.gleam] 15name = "Gleam LSP" 16language = "Gleam" 17 18[grammars.gleam] 19repository = "https://github.com/gleam-lang/tree-sitter-gleam" 20commit = "0153f8b875cd02034b553f3a84a2f5ee67a80364" 21 22[slash_commands.gleam-project] 23description = "Returns information about the current Gleam project." 24requires_argument = false