blob: a92523c12c2d781a79284300bd07f449f2ef09b3 [file] [log] [blame]
Robert R Evansa4d02422010-10-02 15:07:29 -07001#!/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
7export PATH=$PATH:~/.gem/ruby/1.8/bin:/opt/nginx/sbin
8
9# Path to the bash it configuration
10export BASH=$HOME/.bash_it
Robert R Evans1f923a92010-10-03 09:41:36 -070011export LOAD_COLORS=$BASH/themes/base.theme.bash
Robert R Evansa4d02422010-10-02 15:07:29 -070012
13# Lock and Load a custom theme file
14# location /.bash_it/themes/
15export BASH_THEME='bobby'
16
Robert R Evans1f923a92010-10-03 09:41:36 -070017# Load the color configuration file, if you want to add colors to the GIT THEME PROMPTs
18source $LOAD_COLORS
19
Robert R Evansa4d02422010-10-02 15:07:29 -070020# Your place for hosting Git repos. I use this for private repos.
Robert R Evans149c18f2010-10-02 15:47:22 -070021export GIT_HOSTING='git@git.domain.com'
Robert R Evans1f923a92010-10-03 09:41:36 -070022export GIT_THEME_PROMPT_DIRTY=' ${RED}✗${LIGHT_GREEN}' # This shows how to use sample the colors
23export GIT_THEME_PROMPT_CLEAN=' ✓'
24export GIT_THEME_PROMPT_PREFIX='('
25export GIT_THEME_PROMPT_SUFFIX=')'
Robert R Evansa4d02422010-10-02 15:07:29 -070026
27# Set my editor and git editor
28export EDITOR="/usr/bin/mate -w"
29export GIT_EDITOR='/usr/bin/mate -w'
30
31# Set the path nginx
32export NGINX_PATH='/opt/nginx'
33
34# Don't check mail when opening terminal.
35unset MAILCHECK
36
37# Load Bash It
38source $BASH/bash_it.sh