summaryrefslogtreecommitdiffstats
path: root/helix/.config/helix/languages.toml
blob: 7502b27ac2b9d24309ac96e4ffca85d565e66dc6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
[language-server.rust-analyzer]
config = { checkOnSave = { command = "clippy" }, cargo = { allFeatures = true }, diagnostics = { disabled = ["inactive-code"] } }

[[language]]
name = "python"
language-servers = ["pyright"]
formatter = { command = "black", args = ["--target-version=py311", "--quiet", "-"] }
auto-format = true

[language-server.pyright]
command = "pyright-langserver"
args = ["--stdio"]
config = {}