mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-05 20:07:44 +03:00
Merge 62e9ccf4ee
into 7ebf650029
This commit is contained in:
commit
ac347b60d4
1 changed files with 36 additions and 0 deletions
|
@ -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"
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue