From 148ec6044004941bc0be63fadea6f9be903c1671 Mon Sep 17 00:00:00 2001 From: sommerfeld Date: Fri, 22 May 2026 10:41:21 +0100 Subject: perf(git): disable delta hyperlinks MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Delta's hyperlink resolution shells out to git rev-parse for every blob to build clickable file links, which is fine on bare metal but death-by-fork on a slow VM — 'git diff' could take many seconds while 'git diff | cat' returns instantly. Turn hyperlinks off; we get clickable nothing but visible-everything-fast diffs. --- dot_config/git/config | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'dot_config') diff --git a/dot_config/git/config b/dot_config/git/config index cc4959e..e1857b3 100644 --- a/dot_config/git/config +++ b/dot_config/git/config @@ -82,7 +82,7 @@ side-by-side = true line-numbers = true relative-paths = true - hyperlinks = true + hyperlinks = false [absorb] autoStageIfNothingStaged = true [alias] -- cgit v1.3.1