blob: 95f481e90fdbbfc1fb295b1a1d4213f86f0cff27 [file] [log] [blame]
Robert R Evansa4d02422010-10-02 15:07:29 -07001#!/bin/bash
2
Robert R Evansa3ccf492010-10-12 08:27:04 -07003# Load RVM, if you are using it
Robert R Evansa4d02422010-10-02 15:07:29 -07004[[ -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
Mark Szymanski96ccdae2010-10-23 10:58:44 -050020export EDITOR="/usr/bin/mate -w"
Robert R Evansa4d02422010-10-02 15:07:29 -070021export 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
Mark Szymanski61fcd212010-11-01 20:24:53 -050029
Mark Szymanski4958a552010-10-25 17:51:04 -050030# Change this to your console based IRC client of choice.
31
32export IRC_CLIENT='irssi'
33
Mark Szymanski0b377382010-10-31 10:02:25 -050034# Set this to the command you use for todo.txt-cli
35
36export TODO="t"
37
Jesus de Mula Cano0127dc22011-03-06 18:49:08 +010038# 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 Evansa4d02422010-10-02 15:07:29 -070042# Load Bash It
43source $BASH/bash_it.sh