Adding a workaround so installed binaries get loaded into the path
[dotfiles] / .gitconfig
1 [user]
2         name = David Kerkeslager
3         email = kerkeslager@gmail.com
4
5 [core]
6         editor = vim
7     excludesfile = ~/.gitignore
8
9 [color]
10         diff = auto
11         status = auto
12         branch = auto
13         interactive = auto
14         ui = true
15         pager = true
16
17 [color "status"]
18         added = green
19         removed = red
20         changed = yellow
21         untracked = cyan
22
23 [apply]
24         whitespace = fix
25
26 [alias]
27         pom = push origin master