aboutsummaryrefslogtreecommitdiffstats
path: root/.config/helix/languages.toml
diff options
context:
space:
mode:
Diffstat (limited to '.config/helix/languages.toml')
-rw-r--r--.config/helix/languages.toml10
1 files changed, 9 insertions, 1 deletions
diff --git a/.config/helix/languages.toml b/.config/helix/languages.toml
index eeeedba..8b5416c 100644
--- a/.config/helix/languages.toml
+++ b/.config/helix/languages.toml
@@ -3,12 +3,20 @@ 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"
scope = "source.python"
auto-format = true
shebangs = ["python", "python3"]
roots = ["pyproject.toml", "setup.py", "setup.cfg", "SConstruct"]
-max-line-length = 120
language-server = { command = "pylsp" }
[language.config.pylsp.plugins.flake8]