Add Gleam LSP and formatter (#5514)

This commit is contained in:
Lawrence Sarpong
2025-12-14 16:51:08 +00:00
committed by GitHub
parent 90d44751e7
commit e6a0a005d6
5 changed files with 30 additions and 0 deletions

View File

@@ -284,3 +284,12 @@ export const latexindent: Info = {
return Bun.which("latexindent") !== null
},
}
export const gleam: Info = {
name: "gleam",
command: ["gleam", "format", "$FILE"],
extensions: [".gleam"],
async enabled() {
return Bun.which("gleam") !== null
},
}