dotfiles

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

commit 0b07aead961ccb619abf50bc4002ef0497dbd662
parent 365db95f86a94c24d38479306c939699ce0223c7
Author: Chris Bracken <chris@bracken.jp>
Date:   Wed,  4 Apr 2018 12:41:36 -0700

Add cargo to path

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

diff --git a/.paths b/.paths @@ -42,6 +42,9 @@ if [[ "$(uname)" == "Darwin" ]]; then path_prepend "$HOME/.homebrew/bin" fi +# Rust +path_prepend "$HOME/.cargo/bin" + # Ruby gems if which ruby >/dev/null && which gem >/dev/null; then path_prepend "$(ruby -rubygems -e 'puts Gem.user_dir')/bin"