config/git: parallelize
This commit is contained in:
parent
f99e5be0ca
commit
d59029e968
|
@ -8,9 +8,16 @@
|
||||||
recurse = true
|
recurse = true
|
||||||
[rerere]
|
[rerere]
|
||||||
enabled = true
|
enabled = true
|
||||||
# Accelerate packing by automatically determining thread count
|
|
||||||
|
# Parallelize
|
||||||
[pack]
|
[pack]
|
||||||
threads = 0
|
threads = 0
|
||||||
|
[checkout]
|
||||||
|
workers = 0
|
||||||
|
[fetch]
|
||||||
|
parallel = 0
|
||||||
|
[submodule]
|
||||||
|
fetchJobs = 0
|
||||||
|
|
||||||
[pull]
|
[pull]
|
||||||
ff = only
|
ff = only
|
||||||
|
|
|
@ -40,7 +40,7 @@ export CCACHE_DIR="$XDG_CACHE_HOME"/ccache
|
||||||
# environment
|
# environment
|
||||||
export IGNOREDIRS=".sync,.stfolder,.git,out,build,dev"
|
export IGNOREDIRS=".sync,.stfolder,.git,out,build,dev"
|
||||||
export EDITOR=/usr/bin/nvim
|
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
|
# red stderr
|
||||||
test -f "/usr/lib/libstderred.so" && export LD_PRELOAD="/usr/lib/libstderred.so${LD_PRELOAD:+:$LD_PRELOAD}"
|
test -f "/usr/lib/libstderred.so" && export LD_PRELOAD="/usr/lib/libstderred.so${LD_PRELOAD:+:$LD_PRELOAD}"
|
||||||
# software config
|
# software config
|
||||||
|
|
Loading…
Reference in New Issue