blob: f46d71db0ab161b510617f851e14c0f26e628523 [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
Robert R Evansa4d02422010-10-02 15:07:29 -070037# Load Bash It
38source $BASH/bash_it.sh