Robert R Evans | a4d0242 | 2010-10-02 15:07:29 -0700 | [diff] [blame] | 1 | #!/bin/bash |
| 2 | |
Robert R Evans | a3ccf49 | 2010-10-12 08:27:04 -0700 | [diff] [blame] | 3 | # Load RVM, if you are using it |
Robert R Evans | a4d0242 | 2010-10-02 15:07:29 -0700 | [diff] [blame] | 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 |
John Schulz | 323ce20 | 2011-09-20 11:07:48 -0400 | [diff] [blame] | 10 | export BASH_IT=$HOME/.bash_it |
Robert R Evans | a4d0242 | 2010-10-02 15:07:29 -0700 | [diff] [blame] | 11 | |
| 12 | # Lock and Load a custom theme file |
| 13 | # location /.bash_it/themes/ |
John Schulz | 323ce20 | 2011-09-20 11:07:48 -0400 | [diff] [blame] | 14 | export BASH_IT_THEME='bobby' |
Robert R Evans | a4d0242 | 2010-10-02 15:07:29 -0700 | [diff] [blame] | 15 | |
| 16 | # Your place for hosting Git repos. I use this for private repos. |
Robert R Evans | 149c18f | 2010-10-02 15:47:22 -0700 | [diff] [blame] | 17 | export GIT_HOSTING='git@git.domain.com' |
Robert R Evans | a4d0242 | 2010-10-02 15:07:29 -0700 | [diff] [blame] | 18 | |
| 19 | # Set my editor and git editor |
Mark Szymanski | 96ccdae | 2010-10-23 10:58:44 -0500 | [diff] [blame] | 20 | export EDITOR="/usr/bin/mate -w" |
Robert R Evans | a4d0242 | 2010-10-02 15:07:29 -0700 | [diff] [blame] | 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 | |
Mark Szymanski | 61fcd21 | 2010-11-01 20:24:53 -0500 | [diff] [blame] | 29 | |
Mark Szymanski | 4958a55 | 2010-10-25 17:51:04 -0500 | [diff] [blame] | 30 | # Change this to your console based IRC client of choice. |
| 31 | |
| 32 | export IRC_CLIENT='irssi' |
| 33 | |
Mark Szymanski | 0b37738 | 2010-10-31 10:02:25 -0500 | [diff] [blame] | 34 | # Set this to the command you use for todo.txt-cli |
| 35 | |
| 36 | export TODO="t" |
| 37 | |
Jesus de Mula Cano | 0127dc2 | 2011-03-06 18:49:08 +0100 | [diff] [blame] | 38 | # Set vcprompt executable path for scm advance info in prompt (demula theme) |
| 39 | # https://github.com/xvzf/vcprompt |
| 40 | #export VCPROMPT_EXECUTABLE=~/.vcprompt/bin/vcprompt |
| 41 | |
Robert R Evans | a4d0242 | 2010-10-02 15:07:29 -0700 | [diff] [blame] | 42 | # Load Bash It |
John Schulz | 323ce20 | 2011-09-20 11:07:48 -0400 | [diff] [blame] | 43 | source $BASH_IT/bash_it.sh |