1
0
Fork 0

rice .gitconfig

This commit is contained in:
Pratham Patel 2024-03-22 07:13:19 +05:30
parent d31b6f642a
commit 47374fa89f
Signed by: thefossguy
SSH Key Fingerprint: SHA256:/B3wAg7jnMEBQ2JwkebbS/eXVZANDmqRfnd9QkIhxMI
1 changed files with 31 additions and 3 deletions

View File

@ -2,22 +2,50 @@
helper = store
[core]
editor = nvim
compression = 9
fsmonitor = true # no workey on penguin
[checkout]
workers = 0 # < 1 means use all **logical** cores
thresholdForParallelism = 1000 # perform parallel checkout only if files are > 1000
[user]
name = Pratham Patel
email = prathampatel@thefossguy.com
signingkey = ~/.ssh/git
[commit]
gpgsign = true
verbose = true
verbose = true # show the diff in the editor opened by `git commit` (as a comment)
status = true # show status info in the editor opened by `git commit` (as a comment)
[color]
ui = auto
ui = always
advice = always
branch = always
diff = always
grep = always
interactive = always
push = always
remote = always
showBranch = always
status = always
transport = always
[column]
ui = auto,column,nodense # should cover all supported commands; I hope
[init]
defaultBranch = master
[push]
default = simple
followTags = true
[diff]
tool = meld
guitool = meld # overrides `merge.guitool`
[difftool]
guiDefault = false # do **NOT** open `diff.guitool` even if `DISPLAY` is set
[fetch]
parallel = 0 # multi-threaded fetching
[format]
numbered = true
cc = thefirst1322@gmail.com # my other email
signOff = true
[fsmonitor]
allowRemote = false
[gpg]
format = ssh
[ssh]