dotfiles/zsh/oh-my-zsh.zsh

11 lines
261 B
Bash
Raw Normal View History

2011-10-24 11:05:12 +11:00
export ZSH=$DOT_FILES/zsh/lib/oh-my-zsh
export ZSH_THEME="risto"
2011-10-24 11:05:50 +11:00
plugins=(rails3 git ruby osx brew)
2011-10-24 11:05:35 +11:00
if ! [ -d "$ZSH" ]; then
echo "Cloning Oh My Zsh..."
/usr/bin/env git clone git://github.com/robbyrussell/oh-my-zsh.git "$ZSH"
2011-02-18 12:47:15 +11:00
fi
2011-10-24 11:05:35 +11:00
source $ZSH/oh-my-zsh.sh