This commit is contained in:
Kyra 2025-04-03 13:34:47 -04:00 committed by GitHub
commit ac347b60d4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -786,6 +786,11 @@ roots = [ "package.json" ]
comment-token = "//"
block-comment-tokens = { start = "/*", end = "*/" }
language-servers = [ "typescript-language-server" ]
formatter = { command = "prettier" }
# Alternative formatters (for your own `languages.toml` file in ~/.config/helix`
# replace the line above with one below)
# formatter = { command = "biome", args = ["format"] }
# formatter = { command = "deno", args = ["format"] }
indent = { tab-width = 2, unit = " " }
[language.debugger]
@ -814,6 +819,11 @@ roots = [ "package.json" ]
comment-token = "//"
block-comment-tokens = { start = "/*", end = "*/" }
language-servers = [ "typescript-language-server" ]
formatter = { command = "prettier" }
# Alternative formatters (for your own `languages.toml` file in ~/.config/helix`
# replace the line above with one below)
# formatter = { command = "biome", args = ["format"] }
# formatter = { command = "deno", args = ["format"] }
indent = { tab-width = 2, unit = " " }
grammar = "javascript"
@ -828,6 +838,11 @@ roots = [ "package.json", "tsconfig.json" ]
comment-token = "//"
block-comment-tokens = { start = "/*", end = "*/" }
language-servers = [ "typescript-language-server" ]
formatter = { command = 'prettier', args = ["--parser", "typescript"] }
# Alternative formatters (for your own `languages.toml` file in ~/.config/helix`
# replace the line above with one below)
# formatter = { command = "biome", args = ["format"] }
# formatter = { command = "deno", args = ["format"] }
indent = { tab-width = 2, unit = " " }
[[grammar]]
@ -861,6 +876,11 @@ roots = [ "package.json", "tsconfig.json" ]
comment-token = "//"
block-comment-tokens = { start = "/*", end = "*/" }
language-servers = [ "typescript-language-server" ]
formatter = { command = "prettier", args = ["--parser", "typescript"] }
# Alternative formatters (for your own `languages.toml` file in ~/.config/helix`
# replace the line above with one below)
# formatter = { command = "biome", args = ["format"] }
# formatter = { command = "deno", args = ["format"] }
indent = { tab-width = 2, unit = " " }
[[grammar]]
@ -918,6 +938,10 @@ shebangs = ["python", "uv"]
roots = ["pyproject.toml", "setup.py", "poetry.lock", "pyrightconfig.json"]
comment-token = "#"
language-servers = ["ruff", "jedi", "pylsp"]
formatter = { command = "ruff", args = ["format"]}
# Alternative formatters (for your own `languages.toml` file in ~/.config/helix`
# replace the line above with one below)
# formatter = { command = "black", args = ["-"] }
# TODO: pyls needs utf-8 offsets
indent = { tab-width = 4, unit = " " }
@ -1418,6 +1442,7 @@ roots = ["Setup.hs", "stack.yaml", "cabal.project"]
comment-token = "--"
block-comment-tokens = { start = "{-", end = "-}" }
language-servers = [ "haskell-language-server" ]
formatter = { command = "ormolu" }
indent = { tab-width = 2, unit = " " }
[[grammar]]
@ -1900,6 +1925,7 @@ auto-format = true
comment-token = "--"
block-comment-tokens = { start = "{-", end = "-}" }
language-servers = [ "elm-language-server" ]
formatter = { command = "elm-format", args = ["--stdin"] }
indent = { tab-width = 4, unit = " " }
[[grammar]]
@ -3908,6 +3934,11 @@ language-servers = [
"vscode-eslint-language-server",
"ember-language-server",
]
formatter = { command = "prettier" }
# Alternative formatters (for your own `languages.toml` file in ~/.config/helix`
# replace the line above with one below)
# formatter = { command = "biome", args = ["format"] }
# formatter = { command = "deno", args = ["format"] }
indent = { tab-width = 2, unit = " " }
grammar = "javascript"
@ -3932,6 +3963,11 @@ language-servers = [
"vscode-eslint-language-server",
"ember-language-server",
]
formatter = { command = "prettier", args = ["--parser", "typescript"] }
# Alternative formatters (for your own `languages.toml` file in ~/.config/helix`
# replace the line above with one below)
# formatter = { command = "biome", args = ["format"] }
# formatter = { command = "deno", args = ["format"] }
indent = { tab-width = 2, unit = " " }
grammar = "typescript"