helix-config/languages.toml
2025-01-28 22:59:56 -06:00

27 lines
442 B
TOML

[python]
name = "python"
file-types = ["py"]
comment-tokens = "#"
indent = { tab-width = 4, unit = " "}
language-servers = ["pylsp", "python-ruff"]
roots = ["setup.py", "pyproject.toml"]
[pylsp]
command = "pylsp"
[python-ruff]
command = "ruff"
args = ["server"]
[go]
name = "go"
file-types = ["go"]
comment-tokens = "//"
indent = { tab-width = 4, unit = "\t"}
language-servers = ["gopls"]
roots = ["go.mod"]
[gopls]
command = "gopls"