]> git.r.bdr.sh - rbdr/dotfiles/blame - zshrc
Add Zshrc and my zsh-theme
[rbdr/dotfiles] / zshrc
CommitLineData
9041bd93
BB
1# Path to your oh-my-zsh configuration.
2ZSH=$HOME/.oh-my-zsh
3
4# Set name of the theme to load.
5# Look in ~/.oh-my-zsh/themes/
6# Optionally, if you set this to "random", it'll load a random theme each
7# time that oh-my-zsh is loaded.
8export ZSH_THEME="ben-prose"
9
10# Set to this to use case-sensitive completion
11# CASE_SENSITIVE="true"
12
13# Comment this out to disable weekly auto-update checks
14# DISABLE_AUTO_UPDATE="true"
15
16# Uncomment following line if you want to disable colors in ls
17# DISABLE_LS_COLORS="true"
18
19# Uncomment following line if you want to disable autosetting terminal title.
20# DISABLE_AUTO_TITLE="true"
21
22# Uncomment following line if you want disable red dots displayed while waiting for completion
23# DISABLE_COMPLETION_WAITING_DOTS="true"
24
25# Which plugins would you like to load? (plugins can be found in ~/.oh-my-zsh/plugins/*)
26# Example format: plugins=(rails git textmate ruby lighthouse)
27plugins=(git brew bundler cap gem osx rails3 rvm)
28
29source $ZSH/oh-my-zsh.sh
30
31#
32# Some Custom things saved from my bash profile
33#
34
35export TERM=screen-256color
36export JAVA_HOME=$(/usr/libexec/java_home)
37export PATH=/usr/local/bin:/usr/local/sbin:$PATH
38export NODE_PATH=/usr/local/lib/node_modules:$NODE_PATH
39
40#display fortune when I start
41echo -e "\033[30m"
42/usr/local/bin/fortune
43echo -e "\033[m"
44
45#some aliases.
46alias dwarffortress="/Applications/Dwarf\ Fortress/df"
47alias ls="ls -FG"
48alias rspec="rspec --color"
49
50#Git utility aliases
51alias gpsc="git push origin $GIT_BRANCH"
52alias gplc="git pull origin $GIT_BRANCH"
53
54#Screeninator and RVM scripts
55[[ -s $HOME/.rvm/scripts/rvm ]] && source $HOME/.rvm/scripts/rvm
56
57#
58# End of the custom things from my bash profile.
59# There's probably a more "zsh-ish" way of doing these, but I have no time.
60#
61
62# Customize to your needs...
63export PATH=/Users/benbeltran/.rvm/gems/ruby-1.9.3-p194/bin:/Users/benbeltran/.rvm/gems/ruby-1.9.3-p194@global/bin:/Users/benbeltran/.rvm/rubies/ruby-1.9.3-p194/bin:/Users/benbeltran/.rvm/bin:/usr/local/bin:/usr/local/sbin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin