blob: 17853b1a79dfd1cce60db939af0a3ccc3469f022 [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
Mark Szymanski1dd1add2010-11-01 20:57:35 -050031export JEKYLL_LOCAL_ROOT="$HOME/Sites/jekyllsite"
Mark Szymanski96ccdae2010-10-23 10:58:44 -050032
33# And change this to the remote server and root
34
35export JEKYLL_REMOTE_ROOT="user@server:/path/to/jekyll/root"
36
Mark Szymanski61fcd212010-11-01 20:24:53 -050037# And, for the last of the jekyll variables, this is the formatting you use, eg: markdown,
38# textile, etc. Basically whatever you use as the extension for posts, without the preceding dot
39
40export JEKYLL_FORMATTING="markdown"
41
Mark Szymanski4958a552010-10-25 17:51:04 -050042# Change this to your console based IRC client of choice.
43
44export IRC_CLIENT='irssi'
45
Mark Szymanski0b377382010-10-31 10:02:25 -050046# Set this to the command you use for todo.txt-cli
47
48export TODO="t"
49
Florian Baumannc00bde62010-12-01 06:45:42 +010050# Set store directory for handmade commandline history tool
51export hchtstoredir="$HOME/.hcht"
52
Robert R Evansa4d02422010-10-02 15:07:29 -070053# Load Bash It
54source $BASH/bash_it.sh