mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-06 12:27:42 +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 = "//"
|
comment-token = "//"
|
||||||
block-comment-tokens = { start = "/*", end = "*/" }
|
block-comment-tokens = { start = "/*", end = "*/" }
|
||||||
language-servers = [ "typescript-language-server" ]
|
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 = " " }
|
indent = { tab-width = 2, unit = " " }
|
||||||
|
|
||||||
[language.debugger]
|
[language.debugger]
|
||||||
|
@ -814,6 +819,11 @@ roots = [ "package.json" ]
|
||||||
comment-token = "//"
|
comment-token = "//"
|
||||||
block-comment-tokens = { start = "/*", end = "*/" }
|
block-comment-tokens = { start = "/*", end = "*/" }
|
||||||
language-servers = [ "typescript-language-server" ]
|
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 = " " }
|
indent = { tab-width = 2, unit = " " }
|
||||||
grammar = "javascript"
|
grammar = "javascript"
|
||||||
|
|
||||||
|
@ -828,6 +838,11 @@ roots = [ "package.json", "tsconfig.json" ]
|
||||||
comment-token = "//"
|
comment-token = "//"
|
||||||
block-comment-tokens = { start = "/*", end = "*/" }
|
block-comment-tokens = { start = "/*", end = "*/" }
|
||||||
language-servers = [ "typescript-language-server" ]
|
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 = " " }
|
indent = { tab-width = 2, unit = " " }
|
||||||
|
|
||||||
[[grammar]]
|
[[grammar]]
|
||||||
|
@ -861,6 +876,11 @@ roots = [ "package.json", "tsconfig.json" ]
|
||||||
comment-token = "//"
|
comment-token = "//"
|
||||||
block-comment-tokens = { start = "/*", end = "*/" }
|
block-comment-tokens = { start = "/*", end = "*/" }
|
||||||
language-servers = [ "typescript-language-server" ]
|
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 = " " }
|
indent = { tab-width = 2, unit = " " }
|
||||||
|
|
||||||
[[grammar]]
|
[[grammar]]
|
||||||
|
@ -918,6 +938,10 @@ shebangs = ["python", "uv"]
|
||||||
roots = ["pyproject.toml", "setup.py", "poetry.lock", "pyrightconfig.json"]
|
roots = ["pyproject.toml", "setup.py", "poetry.lock", "pyrightconfig.json"]
|
||||||
comment-token = "#"
|
comment-token = "#"
|
||||||
language-servers = ["ruff", "jedi", "pylsp"]
|
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
|
# TODO: pyls needs utf-8 offsets
|
||||||
indent = { tab-width = 4, unit = " " }
|
indent = { tab-width = 4, unit = " " }
|
||||||
|
|
||||||
|
@ -1418,6 +1442,7 @@ roots = ["Setup.hs", "stack.yaml", "cabal.project"]
|
||||||
comment-token = "--"
|
comment-token = "--"
|
||||||
block-comment-tokens = { start = "{-", end = "-}" }
|
block-comment-tokens = { start = "{-", end = "-}" }
|
||||||
language-servers = [ "haskell-language-server" ]
|
language-servers = [ "haskell-language-server" ]
|
||||||
|
formatter = { command = "ormolu" }
|
||||||
indent = { tab-width = 2, unit = " " }
|
indent = { tab-width = 2, unit = " " }
|
||||||
|
|
||||||
[[grammar]]
|
[[grammar]]
|
||||||
|
@ -1900,6 +1925,7 @@ auto-format = true
|
||||||
comment-token = "--"
|
comment-token = "--"
|
||||||
block-comment-tokens = { start = "{-", end = "-}" }
|
block-comment-tokens = { start = "{-", end = "-}" }
|
||||||
language-servers = [ "elm-language-server" ]
|
language-servers = [ "elm-language-server" ]
|
||||||
|
formatter = { command = "elm-format", args = ["--stdin"] }
|
||||||
indent = { tab-width = 4, unit = " " }
|
indent = { tab-width = 4, unit = " " }
|
||||||
|
|
||||||
[[grammar]]
|
[[grammar]]
|
||||||
|
@ -3908,6 +3934,11 @@ language-servers = [
|
||||||
"vscode-eslint-language-server",
|
"vscode-eslint-language-server",
|
||||||
"ember-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 = " " }
|
indent = { tab-width = 2, unit = " " }
|
||||||
grammar = "javascript"
|
grammar = "javascript"
|
||||||
|
|
||||||
|
@ -3932,6 +3963,11 @@ language-servers = [
|
||||||
"vscode-eslint-language-server",
|
"vscode-eslint-language-server",
|
||||||
"ember-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 = " " }
|
indent = { tab-width = 2, unit = " " }
|
||||||
grammar = "typescript"
|
grammar = "typescript"
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue