mirror of
https://github.com/frebib/dotfiles.git
synced 2024-06-14 12:57:23 +00:00
dotfiles: move .config/* to root
This seems to make more sense. Almost all files were within .config anyway. Signed-off-by: Joe Groocock <me@frebib.net>
This commit is contained in:
57
git/config
Normal file
57
git/config
Normal file
@ -0,0 +1,57 @@
|
||||
[user]
|
||||
name = Joe Groocock
|
||||
email = me@frebib.net
|
||||
signingkey = CFBB6A86
|
||||
[core]
|
||||
autocrlf = input
|
||||
excludesfile = /home/frebib/.config/git/gitignore
|
||||
pager = diff-highlight | $PAGER
|
||||
[interactive]
|
||||
diffFilter = diff-highlight
|
||||
[commit]
|
||||
gpgsign = true
|
||||
[fetch]
|
||||
prune = true
|
||||
[push]
|
||||
default = upstream
|
||||
[pull]
|
||||
rebase = true
|
||||
prune = true
|
||||
[rebase]
|
||||
autoStash = true
|
||||
[format]
|
||||
pretty = format:%h %Cblue%ad%Creset %ae %Cgreen%s%Creset
|
||||
[alias]
|
||||
verbs = !git log --pretty=format:'%s' | cut -d \" \" -f 1 | sort | uniq -c | sort -nr
|
||||
pushall = !git remote | xargs -L1 git push
|
||||
count = !echo $(pwd) && git rev-list HEAD --count
|
||||
unpushed = !git log --oneline @{u}..HEAD
|
||||
leaders = !git shortlog -s -n --all --no-merges
|
||||
[advice]
|
||||
statusHints = false
|
||||
pushUpdateRejected = false
|
||||
[sendemail]
|
||||
from = Joe Groocock <me@frebib.net>
|
||||
smtpserver = smtp.zoho.com
|
||||
smtpuser = me@frebib.net
|
||||
smtpencryption = ssl
|
||||
smtpserverport = 465
|
||||
suppresscc = self
|
||||
[diff]
|
||||
algorithm = patience
|
||||
[color]
|
||||
ui = true
|
||||
[color "diff"]
|
||||
meta = cyan
|
||||
frag = magenta
|
||||
commit = yellow
|
||||
old = red
|
||||
new = green
|
||||
whitespace = red 88 reverse
|
||||
[color "diff-highlight"]
|
||||
oldNormal = red
|
||||
oldHighlight = red 88
|
||||
newNormal = green
|
||||
newHighlight = green 22
|
||||
|
||||
# vim: noet
|
Reference in New Issue
Block a user