aboutsummaryrefslogtreecommitdiffstats
path: root/.config/helix/languages.toml
blob: 270e3a42b856ffaa9fdfc50c7b90fe72c2cdbd11 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
[[language]]
name = "rust"
auto-format = true

[[language]]
name = "email"
scope = "source.text"
auto-format = true
text-width = 80
file-types = ["mutt"]
indent = { tab-width = 2, unit = "  " }
roots = []

[[language]]
name = "python"
language-servers = [ "pyright" ]

# [[language]]
# name = "python"
# language-servers = [ "ruff" ]
# auto-format = true

# [language-server.ruff]
# command = "ruff-lsp"

# [language-server.ruff.config.settings]
# args = ["--ignore", "E501"]

# [language.formatter]
# command = "ruff"
# args = ["format", "--check", "-q", "-"]