dotfiles

$HOME is where the <3 is
git clone git://git.alexkarle.com/dotfiles.git
Log | Files | Refs | Submodules | README | LICENSE

.gitconfig (312B) [raw]


      1 [user]
      2 	email = alex@alexkarle.com
      3 	name = Alex Karle
      4 
      5 [diff]
      6 	tool = vimdiff
      7 
      8 [difftool.vimdiff]
      9         path = nvim
     10 
     11 [alias]
     12 	co = checkout
     13 	b = branch
     14 	s = status --short
     15 	ss = status
     16 	p = push
     17 	l = log --stat
     18 	a = add
     19 	rb = rebase
     20 	rs = reset
     21 	d = diff
     22 	c = commit
     23 	g = grep -n
     24 	f = fetch
     25 
     26 [pull]
     27 	ff = only