aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Runge <dave@sleepmap.de>2023-12-03 11:06:24 +0100
committerDavid Runge <dave@sleepmap.de>2023-12-03 11:06:24 +0100
commit5568cc54a3fe6a6f3072499cbc59f9e7a291009e (patch)
tree72eba04a96bedf178971080543459c3fdedea82d
parent8f0788f8e076426c28cdbb3d2af1b31ba2837cd1 (diff)
downloaddotfiles-5568cc54a3fe6a6f3072499cbc59f9e7a291009e.tar.gz
dotfiles-5568cc54a3fe6a6f3072499cbc59f9e7a291009e.tar.bz2
dotfiles-5568cc54a3fe6a6f3072499cbc59f9e7a291009e.tar.xz
dotfiles-5568cc54a3fe6a6f3072499cbc59f9e7a291009e.zip
helix: Remove broken language config for Python
With newer helix this config does no longer work. It is better to find a ruff based one in the future as noone in their right mind should configure e.g. flake8. Signed-off-by: David Runge <dave@sleepmap.de>
-rw-r--r--.config/helix/languages.toml20
1 files changed, 0 insertions, 20 deletions
diff --git a/.config/helix/languages.toml b/.config/helix/languages.toml
index 8b5416c..81722b5 100644
--- a/.config/helix/languages.toml
+++ b/.config/helix/languages.toml
@@ -10,23 +10,3 @@ 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"]
-language-server = { command = "pylsp" }
-
-[language.config.pylsp.plugins.flake8]
-enabled = true
-maxComplexity = 10
-maxLineLength = 120
-
-[language.config.pylsp.plugins.pycodestyle]
-enabled = false
-
-[language.config.pylsp.plugins.pydocstyle]
-enabled = true
-formatter = { command = "black"}