blob: 60cac9eabea73366026decda7c89a764cbcbf686 [file] [log] [blame]
Eitan Adler3fc60b52012-04-17 00:24:58 -04001#!/usr/bin/env bash
Robert R Evansa4d02422010-10-02 15:07:29 -07002
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
John Schulz323ce202011-09-20 11:07:48 -040010export BASH_IT=$HOME/.bash_it
Robert R Evansa4d02422010-10-02 15:07:29 -070011
12# Lock and Load a custom theme file
13# location /.bash_it/themes/
John Schulz323ce202011-09-20 11:07:48 -040014export BASH_IT_THEME='bobby'
Robert R Evansa4d02422010-10-02 15:07:29 -070015
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
John Schulz323ce202011-09-20 11:07:48 -040043source $BASH_IT/bash_it.sh