blob: 46d0c4a45913c6c4645f7ec0d8b9cbf1be6a99fb [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 Szymanski96ccdae2010-10-23 10:58:44 -050029# Change this to the path of your local jekyll root to use the jekyll aliases
30
31export JEKYLL_LOCAL_ROOT="~/Sites/mrminimalist"
32
33# And change this to the remote server and root
34
35export JEKYLL_REMOTE_ROOT="user@server:/path/to/jekyll/root"
36
Mark Szymanski4958a552010-10-25 17:51:04 -050037# Change this to your console based IRC client of choice.
38
39export IRC_CLIENT='irssi'
40
Mark Szymanski0b377382010-10-31 10:02:25 -050041# Set this to the command you use for todo.txt-cli
42
43export TODO="t"
44
Robert R Evansa4d02422010-10-02 15:07:29 -070045# Load Bash It
46source $BASH/bash_it.sh