.vim: vim-plug @d80f495
[dotfiles.git] / .gitconfig
index 374e33a89ebb73d728868257e127d0f8c07748a8..9cb3982584153ec0558231b0e615ec2a849680fe 100644 (file)
@@ -3,52 +3,97 @@
        email = tony@nynim.org
 
 [alias]
-    sh     = !git-sh
-    grab   = !githug-grab
-    thanks = !git-thanks
-    cv     = !git-cv
-    track  = !git-track
-    ll = log --pretty=oneline --abbrev-commit --max-count=15
-    review = log -p --max-count=1
-    fp = format-patch --stdout
-    ci = commit
-    st = status
-    br = branch
-    co = checkout
-    df = diff
-    lg = log -p
-    who = shortlog -s --
+       # Simple aliases
+       ci           = commit
+       st           = status -sb
+       br           = branch
+       co           = checkout
+       tags         = tag -n1 -l
+       # Log helpers
+       ll           = log --pretty='format:%C(yellow)%h%Creset %s%C(green bold)%d%Creset %C(black bold)(by %an, %ar)%Creset'
+       graph        = log --all --graph --topo-order --pretty='format:%C(yellow)%h%Creset %s %C(black bold)(by %an)%Creset%C(green bold)%d%Creset%n'
+       # Remote helpers
+       in           = !git-incoming
+       out          = !git-outgoing
+       # Branch helpers
+       bd           = !git-branch-dates
+       bv           = !git-branch-dates -v
+       cv           = !git-cherry-view
+       # Diff helpers
+       df           = diff
+       dfc          = diff --cached
+       dfw          = diff --word-diff=color
+       dfcw         = diff --cached --word-diff=color
+       # Searching
+       ls           = ls-files
+       ack          = !git-ack
+       # Submodules
+       sub          = !git-subup
+       sup          = !git-subup pull
+       # Misc
+       root         = rev-parse --show-toplevel
+       who          = shortlog -s --
+       fp           = format-patch --stdout
+       patch        = !git --no-pager diff --no-color
 
 [core]
-    filemode = true
-    whitespace = space-before-tab, trailing-space
+       filemode = true
+       logallrefupdates = true
+       whitespace = space-before-tab, trailing-space
+       excludesfile = ~/.gitfiles/gitignore-global
+       attributesfile = ~/.gitfiles/gitattributes-global
+       pager = diff-pager
+
+[interactive]
+       diffFilter = diff-filter
 
 [diff]
-    renames = copies
+       renames = copies
+       algorithm  = patience
 
 [sendemail]
-    smtpserver = smtp.gmail.com
-    smtpserverport = 587
-    smtpencryption = tls
-    smtpuser = tony@nynim.org
+       smtpserver = smtp.gmail.com
+       smtpserverport = 587
+       smtpencryption = tls
+       smtpuser = tony@nynim.org
 
 [color]
-    ui = auto
+       ui = auto
 
 [color "diff"]
-    meta = blue bold
-    frag = magenta bold
-    old = red bold
-    new = green bold
+       plain = 241
+       meta = blue bold
+       frag = magenta bold
+       old = red bold
+       new = green bold
 
 [color "branch"]
-    current = yellow reverse
-    local = yellow bold
-    remote = green bold
-    plain = red bold
+       current = yellow reverse
+       local = yellow bold
+       remote = green
+       plain = red bold
+
+[color "decorate"]
+       branch = green bold
+       remoteBranch = green
 
 [color "status"]
-    added = yellow
-    changed = green bold
-    untracked = blue bold
+       added = yellow
+       changed = green bold
+       untracked = blue bold
+
+[color "diff-highlight"]
+       oldNormal = nobold
+       oldHighlight = red bold 235
+       newNormal = nobold
+       newHighlight = green bold black
+
+[pull]
+       rebase = false
+       ff = only
+
+[push]
+       default = matching
 
+[include]
+       path = .gitconfig.local