Move RVM to be the very last thing included in bashrc and zshrc

pull/2/head
Bodaniel Jeanes 2010-06-28 09:41:56 +10:00
parent 1ce8f7e159
commit 8e341a0243
3 changed files with 8 additions and 4 deletions

View File

@ -29,4 +29,7 @@ shopt -s checkwinsize
shopt -s histappend
shopt -s globstar 2>/dev/null # Bash 4 and above only
complete -C $DOT_FILES/bash/rake-completion.rb -o default rake}
complete -C $DOT_FILES/bash/rake-completion.rb -o default rake}
# RVM
[[ -s $HOME/.rvm/scripts/rvm ]] && source $HOME/.rvm/scripts/rvm

View File

@ -8,6 +8,4 @@ source $DOT_FILES/bash/exports
source $DOT_FILES/git/gitrc
source $DOT_FILES/bash/aliases
export VCPROMPT=~/.config/misc/vcprompt.py
[[ -s $HOME/.rvm/scripts/rvm ]] && source $HOME/.rvm/scripts/rvm
export VCPROMPT=~/.config/misc/vcprompt.py

View File

@ -12,3 +12,6 @@ source $DOT_FILES/zsh/config
# My custom theme
source $DOT_FILES/zsh/theme
# RVM
[[ -s $HOME/.rvm/scripts/rvm ]] && source $HOME/.rvm/scripts/rvm