Gleam-inspired typed configuration language (POC)
1id = "glint"
2name = "Glint"
3version = "0.1.0"
4schema_version = 1
5authors = ["nandi"]
6description = "Glint language support — syntax highlighting and the glint language server"
7repository = "https://github.com/nandi/glint"
8
9[lib]
10kind = "Rust"
11# Matches zed_extension_api; Zed also reads this from the wasm `zed:api-version` section.
12version = "0.7.0"
13
14[language_servers.glint]
15name = "Glint LSP"
16languages = ["Glint"]
17
18[language_servers.glint.language_ids]
19Glint = "glint"
20
21# Glint syntax is Gleam-inspired; reuse tree-sitter-gleam for highlighting.
22[grammars.gleam]
23repository = "https://github.com/gleam-lang/tree-sitter-gleam"
24rev = "6ea757f7eb8d391dbf24dbb9461990757946dd5e"