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

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