2011-11-18 05:45:33 +08:00
|
|
|
# Load secret stuff that I don't want to share with the world on github :)
|
|
|
|
if [ -e ~/.secrets ]; then
|
|
|
|
. ~/.secrets
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Load git completion
|
2011-11-19 02:53:07 +08:00
|
|
|
. ~/.dotfiles/git-completion.bash
|
2011-11-18 05:45:33 +08:00
|
|
|
|
|
|
|
# My aliases and options
|
2011-11-19 02:53:07 +08:00
|
|
|
. ~/.dotfiles/bash_aliases
|
|
|
|
. ~/.dotfiles/bash_options
|
2011-11-23 03:23:59 +08:00
|
|
|
. ~/.dotfiles/bash_path
|
2011-11-23 09:02:36 +08:00
|
|
|
|
|
|
|
# RVM
|
|
|
|
[[ -s "$HOME/.rvm/scripts/rvm" ]] && . "$HOME/.rvm/scripts/rvm"
|