dotfiles

Personal dotfiles
git clone https://git.bracken.jp/dotfiles.git
Log | Files | Refs | LICENSE

commit 97cbb7065352384f98633afa467964de8c08e5b3
parent 26343512cb844eb5db984dce31008f719469fa98
Author: Chris Bracken <chris@bracken.jp>
Date:   Fri,  7 Aug 2015 12:34:45 -0700

Move ~/bin to front of PATH.

Diffstat:
M.paths | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/.paths b/.paths @@ -20,9 +20,6 @@ path_append() { fi } -# set PATH so it includes user's private bin if it exists -path_prepend "$HOME/bin" - # Go development path_prepend "$GOROOT/bin" path_prepend "$GOPATH/bin" @@ -36,3 +33,6 @@ path_prepend "$DART_SDK/bin" path_prepend "/usr/local/bin" path_prepend "/usr/homebrew/bin" path_prepend "/usr/homebrew/opt/coreutils/libexec/gnubin" + +# User's personal bin dir if it exists +path_prepend "$HOME/bin"