Robert R Evans | a4d0242 | 2010-10-02 15:07:29 -0700 | [diff] [blame] | 1 | #!/bin/bash |
| 2 | |
Robert R Evans | a3ccf49 | 2010-10-12 08:27:04 -0700 | [diff] [blame] | 3 | # Load RVM, if you are using it |
Robert R Evans | a4d0242 | 2010-10-02 15:07:29 -0700 | [diff] [blame] | 4 | [[ -s $HOME/.rvm/scripts/rvm ]] && source $HOME/.rvm/scripts/rvm |
| 5 | |
| 6 | # Add rvm gems and nginx to the path |
| 7 | export PATH=$PATH:~/.gem/ruby/1.8/bin:/opt/nginx/sbin |
| 8 | |
| 9 | # Path to the bash it configuration |
| 10 | export BASH=$HOME/.bash_it |
| 11 | |
| 12 | # Lock and Load a custom theme file |
| 13 | # location /.bash_it/themes/ |
| 14 | export BASH_THEME='bobby' |
| 15 | |
| 16 | # Your place for hosting Git repos. I use this for private repos. |
Robert R Evans | 149c18f | 2010-10-02 15:47:22 -0700 | [diff] [blame] | 17 | export GIT_HOSTING='git@git.domain.com' |
Robert R Evans | a4d0242 | 2010-10-02 15:07:29 -0700 | [diff] [blame] | 18 | |
| 19 | # Set my editor and git editor |
Mark Szymanski | 96ccdae | 2010-10-23 10:58:44 -0500 | [diff] [blame] | 20 | export EDITOR="/usr/bin/mate -w" |
Robert R Evans | a4d0242 | 2010-10-02 15:07:29 -0700 | [diff] [blame] | 21 | export GIT_EDITOR='/usr/bin/mate -w' |
| 22 | |
| 23 | # Set the path nginx |
| 24 | export NGINX_PATH='/opt/nginx' |
| 25 | |
| 26 | # Don't check mail when opening terminal. |
| 27 | unset MAILCHECK |
| 28 | |
Mark Szymanski | 96ccdae | 2010-10-23 10:58:44 -0500 | [diff] [blame] | 29 | # Change this to the path of your local jekyll root to use the jekyll aliases |
| 30 | |
Mark Szymanski | 1dd1add | 2010-11-01 20:57:35 -0500 | [diff] [blame] | 31 | export JEKYLL_LOCAL_ROOT="$HOME/Sites/jekyllsite" |
Mark Szymanski | 96ccdae | 2010-10-23 10:58:44 -0500 | [diff] [blame] | 32 | |
| 33 | # And change this to the remote server and root |
| 34 | |
| 35 | export JEKYLL_REMOTE_ROOT="user@server:/path/to/jekyll/root" |
| 36 | |
Mark Szymanski | 61fcd21 | 2010-11-01 20:24:53 -0500 | [diff] [blame] | 37 | # 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 | |
| 40 | export JEKYLL_FORMATTING="markdown" |
| 41 | |
Mark Szymanski | 4958a55 | 2010-10-25 17:51:04 -0500 | [diff] [blame] | 42 | # Change this to your console based IRC client of choice. |
| 43 | |
| 44 | export IRC_CLIENT='irssi' |
| 45 | |
Mark Szymanski | 0b37738 | 2010-10-31 10:02:25 -0500 | [diff] [blame] | 46 | # Set this to the command you use for todo.txt-cli |
| 47 | |
| 48 | export TODO="t" |
| 49 | |
Jesus de Mula Cano | 0127dc2 | 2011-03-06 18:49:08 +0100 | [diff] [blame] | 50 | # Set vcprompt executable path for scm advance info in prompt (demula theme) |
| 51 | # https://github.com/xvzf/vcprompt |
| 52 | #export VCPROMPT_EXECUTABLE=~/.vcprompt/bin/vcprompt |
| 53 | |
Robert R Evans | a4d0242 | 2010-10-02 15:07:29 -0700 | [diff] [blame] | 54 | # Load Bash It |
| 55 | source $BASH/bash_it.sh |