gitconfig 749 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. [user]
  2. email = andrew@andrewswistak.com
  3. name = Andrew Swistak
  4. [push]
  5. default = simple
  6. [merge]
  7. tool = gvimdiff
  8. conflictstyle = diff3
  9. summary = true
  10. [interactive]
  11. singlekey = true
  12. [core]
  13. editor = mvim -f
  14. pager = less -F -X
  15. excludesfile = ~/.gitignore
  16. [mergetool]
  17. prompt = false
  18. tool = gvimdiff
  19. [diff]
  20. tool = gvimdiff
  21. [alias]
  22. lol = log --oneline
  23. c = commit
  24. s = status
  25. cam = commit -am
  26. cane = commit --amend --no-edit
  27. cm = commit -m
  28. ca = commit -a
  29. d = diff
  30. ch = checkout
  31. ctags = !.git/hooks/ctags
  32. [color]
  33. ui = auto
  34. diff = auto
  35. status = auto
  36. branch = auto
  37. interactive = auto
  38. grep = auto
  39. [url "github:"]
  40. insteadOf = git@github.com
  41. insteadOf = github.com
  42. [init]
  43. templatedir = ~/.git_template