diff --git a/bash_paths b/bash_paths index b43a410..e721e39 100644 --- a/bash_paths +++ b/bash_paths @@ -3,6 +3,7 @@ # Directories to be prepended to PATH declare -a dirs_to_prepend=( "$HOME/.bin" + "$HOME/.rvm/bin" "/usr/local/sbin" "/usr/local/bin" # Ensure that this bin always takes precedence over `/usr/bin` ) diff --git a/bash_profile b/bash_profile index 0156d5b..77b03e8 100644 --- a/bash_profile +++ b/bash_profile @@ -61,9 +61,6 @@ complete -C aws_completer aws # rvm # ---------------------------------------------------------------------- -# Add RVM to PATH for scripting -export PATH="$PATH:$HOME/.rvm/bin" - # Load RVM into a shell session *as a function* [[ -s "$HOME/.rvm/scripts/rvm" ]] && source "$HOME/.rvm/scripts/rvm"