From 11dde348372f798cf69ac3d889a3d9e4d37dde4c Mon Sep 17 00:00:00 2001 From: Yin Hou Date: Thu, 31 Oct 2013 10:55:02 -0400 Subject: [PATCH] Update zshrc.zsh-template --- templates/zshrc.zsh-template | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/templates/zshrc.zsh-template b/templates/zshrc.zsh-template index 1dfb6998c..d667fe0da 100644 --- a/templates/zshrc.zsh-template +++ b/templates/zshrc.zsh-template @@ -5,11 +5,15 @@ ZSH=$HOME/.oh-my-zsh # Look in ~/.oh-my-zsh/themes/ # Optionally, if you set this to "random", it'll load a random theme each # time that oh-my-zsh is loaded. -ZSH_THEME="robbyrussell" +ZSH_THEME="yin" # Example aliases # alias zshconfig="mate ~/.zshrc" # alias ohmyzsh="mate ~/.oh-my-zsh" +alias be="bundle exec" +alias bers="bundle exec rspec --drb" +alias create_parallel='rake db:migrate test:prepare; RAILS_ENV=test rake parallel:create' +alias run_parallel='rake db:migrate test:prepare; RAILS_ENV=test rake parallel:prepare parallel:spec' # Set to this to use case-sensitive completion # CASE_SENSITIVE="true" @@ -40,7 +44,7 @@ ZSH_THEME="robbyrussell" # Which plugins would you like to load? (plugins can be found in ~/.oh-my-zsh/plugins/*) # Custom plugins may be added to ~/.oh-my-zsh/custom/plugins/ # Example format: plugins=(rails git textmate ruby lighthouse) -plugins=(git) +plugins=(textmate git ruby rails3 rvm github) source $ZSH/oh-my-zsh.sh