blob: 0991d90c2ddc66212f57dbecd8a66166a283f9f5 [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
11
12# Lock and Load a custom theme file
13# location /.bash_it/themes/
14export BASH_THEME='bobby'
15
16# Your place for hosting Git repos. I use this for private repos.
Robert R Evans149c18f2010-10-02 15:47:22 -070017export GIT_HOSTING='git@git.domain.com'
Robert R Evansa4d02422010-10-02 15:07:29 -070018
19# Set my editor and git editor
20export EDITOR="/usr/bin/mate -w"
21export GIT_EDITOR='/usr/bin/mate -w'
22
23# Set the path nginx
24export NGINX_PATH='/opt/nginx'
25
26# Don't check mail when opening terminal.
27unset MAILCHECK
28
29# Load Bash It
30source $BASH/bash_it.sh