From e71c22b63a9bae43172c3411382add06e063c4c5 Mon Sep 17 00:00:00 2001 From: Trysdyn Black Date: Fri, 29 Dec 2023 16:47:54 -0800 Subject: [PATCH] Force wrapping on markdown in helix This is coming by default next version but it's not out yet so we can stopgap this for now. --- .config/helix/languages.toml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.config/helix/languages.toml b/.config/helix/languages.toml index 84afbd3..08ac411 100644 --- a/.config/helix/languages.toml +++ b/.config/helix/languages.toml @@ -10,3 +10,7 @@ args = ["--stdio"] [language-server.ruff] command = "ruff-lsp" + +[[language]] +name = "markdown" +soft-wrap.enable = true