diff options
| author | 2026-05-22 10:41:21 +0100 | |
|---|---|---|
| committer | 2026-05-22 10:41:21 +0100 | |
| commit | 148ec6044004941bc0be63fadea6f9be903c1671 (patch) | |
| tree | ea4f819310827aee96a637a8ca6f80c37d1c7ffb | |
| parent | 6047b11d9ffebab9c4f045f9172dda60664877b5 (diff) | |
| download | dotfiles-148ec6044004941bc0be63fadea6f9be903c1671.tar.gz dotfiles-148ec6044004941bc0be63fadea6f9be903c1671.tar.bz2 dotfiles-148ec6044004941bc0be63fadea6f9be903c1671.zip | |
perf(git): disable delta hyperlinks
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.
| -rw-r--r-- | dot_config/git/config | 2 |
1 files changed, 1 insertions, 1 deletions
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] |
