From a85103ebc31bf45044d96c1b2c323bbaf3f17b5b Mon Sep 17 00:00:00 2001 From: Filippo Berto Date: Tue, 15 Aug 2023 10:50:41 +0200 Subject: [PATCH] Delta: fix wrapping --- modules/hm/git.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/modules/hm/git.nix b/modules/hm/git.nix index d531394..0da1562 100644 --- a/modules/hm/git.nix +++ b/modules/hm/git.nix @@ -103,8 +103,10 @@ in commit.gpgSign = true; core.editor = "hx"; credential.helper = "cache --timeout=3600 "; + delta.side-by-side = true; + delta.line-numbers = true; delta.navigate = true; - # delta.side-by-side = true; + delta.wrap-max-lines = "unlimited"; diff.colorMoved = "default"; diff.guitool = "meld"; diff.tool = "meld";