Robert R Evans | 74fe837 | 2010-10-02 12:15:56 -0700 | [diff] [blame^] | 1 | #!/bin/bash |
| 2 | |
| 3 | # Load RVM |
| 4 | [[ -s $HOME/.rvm/scripts/rvm ]] && source $HOME/.rvm/scripts/rvm |
| 5 | |
| 6 | # Add rvm gems and nginx to the path |
| 7 | export PATH=$PATH:~/.gem/ruby/1.8/bin:/opt/nginx/sbin |
| 8 | |
| 9 | # Path to the bash it configuration |
| 10 | export BASH=$HOME/.bash_it |
| 11 | |
| 12 | # Lock and Load a custom theme file |
| 13 | # location /.bash_it/themes/ |
| 14 | export BASH_THEME='bobby' |
| 15 | |
| 16 | # Your place for hosting Git repos. I use this for private repos. |
| 17 | export GIT_HOSTING='git@git.domain.org' |
| 18 | |
| 19 | # Set my editor and git editor |
| 20 | export EDITOR="/usr/bin/mate -w" |
| 21 | export GIT_EDITOR='/usr/bin/mate -w' |
| 22 | |
| 23 | # Set the path nginx |
| 24 | export NGINX_PATH='/opt/nginx' |
| 25 | |
| 26 | # Don't check mail when opening terminal. |
| 27 | unset MAILCHECK |
| 28 | |
| 29 | # Load Bash It |
| 30 | source $BASH/bash_it.sh |