From a257d8d1a1d538366258670594763cee6cb42ef1 Mon Sep 17 00:00:00 2001 From: Colin Date: Sat, 8 Jul 2023 00:27:12 +0000 Subject: [PATCH] helix: enable soft line wrapping --- hosts/common/programs/helix.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/hosts/common/programs/helix.nix b/hosts/common/programs/helix.nix index 025af61c..7f4cd8c0 100644 --- a/hosts/common/programs/helix.nix +++ b/hosts/common/programs/helix.nix @@ -8,5 +8,10 @@ # - `hx --grammar fetch` and `hx --grammar build` # but otherwise, they ship as part of HELIX_RUNTIME, in the nix store # persist.plaintext = [ ".config/helix/runtime/grammars" ]; + fs.".config/helix/config.toml".symlink.text = '' + # docs: + [editor.soft-wrap] + enable = true + ''; }; }