From d59029e968a4898c70da0b6946c82eb04ede6f8c Mon Sep 17 00:00:00 2001 From: xeruf <27jf@pm.me> Date: Sun, 4 Jul 2021 20:00:51 +0200 Subject: [PATCH] config/git: parallelize --- .config/git/config | 9 ++++++++- .zprofile | 2 +- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/.config/git/config b/.config/git/config index 9367675..5895ff7 100644 --- a/.config/git/config +++ b/.config/git/config @@ -8,9 +8,16 @@ recurse = true [rerere] enabled = true -# Accelerate packing by automatically determining thread count + +# Parallelize [pack] threads = 0 +[checkout] + workers = 0 +[fetch] + parallel = 0 +[submodule] + fetchJobs = 0 [pull] ff = only diff --git a/.zprofile b/.zprofile index 994625d..ec2ff68 100644 --- a/.zprofile +++ b/.zprofile @@ -40,7 +40,7 @@ export CCACHE_DIR="$XDG_CACHE_HOME"/ccache # environment export IGNOREDIRS=".sync,.stfolder,.git,out,build,dev" export EDITOR=/usr/bin/nvim -export LESS='--RAW-CONTROL-CHARS --ignore-case --incsearch' +export LESS='--RAW-CONTROL-CHARS --ignore-case --incsearch --jump-target=5' # red stderr test -f "/usr/lib/libstderred.so" && export LD_PRELOAD="/usr/lib/libstderred.so${LD_PRELOAD:+:$LD_PRELOAD}" # software config