feat: add texlab language server and latexindent formatter (#5251)

This commit is contained in:
rari404
2025-12-13 00:50:09 -05:00
committed by GitHub
parent 5d7a52f8b8
commit 8917a4c609
2 changed files with 93 additions and 0 deletions

View File

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