From 1c8f2b7b9f1ea9d46f519d7704e2cb9f3788e803 Mon Sep 17 00:00:00 2001 From: Filippo Berto Date: Wed, 26 Apr 2023 16:55:17 +0200 Subject: [PATCH] Helix: enable soft-wrap --- hm_modules/helix.nix | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/hm_modules/helix.nix b/hm_modules/helix.nix index d2ec13c..0e73fe3 100644 --- a/hm_modules/helix.nix +++ b/hm_modules/helix.nix @@ -19,11 +19,12 @@ }]; settings = { theme = "ayu_mirage"; - editor.lsp.display-messages = true; - editor.scrolloff = 5; - editor.true-color = true; - soft-wrap.enable = true; - # editor.soft-wrap.enable = true; + editor = { + lsp.display-messages = true; + scrolloff = 5; + soft-wrap.enable = true; + true-color = true; + }; keys.normal = { "C-A-l" = ":format"; "A-r" = ":reload";