2013-05-23 23:17:11 +00:00
|
|
|
if [ ! -d $HOME/antigen ]; then
|
|
|
|
git clone https://github.com/zsh-users/antigen.git $HOME/antigen
|
|
|
|
fi
|
|
|
|
|
|
|
|
source $HOME/antigen/antigen.zsh
|
|
|
|
|
|
|
|
# Load the oh-my-zsh library
|
2013-06-15 04:40:20 +00:00
|
|
|
antigen use oh-my-zsh
|
2013-05-23 23:17:11 +00:00
|
|
|
|
|
|
|
# Bundles from the default repo (robbyrussel's oh-my-zsh)
|
|
|
|
antigen-bundles <<EOF
|
|
|
|
|
|
|
|
git
|
|
|
|
git-extras
|
|
|
|
git-remote-branch
|
|
|
|
pip
|
|
|
|
ssh-agent
|
|
|
|
|
|
|
|
zsh-users/zsh-syntax-highlighting
|
|
|
|
|
|
|
|
EOF
|
|
|
|
|
|
|
|
# Themes
|
|
|
|
antigen-theme kphoen
|
|
|
|
|
|
|
|
antigen-apply
|
|
|
|
|
|
|
|
unsetopt correct_all
|
|
|
|
|
|
|
|
export PATH=$HOME/bin:$PATH
|
|
|
|
export EDITOR="emacsclient"
|
|
|
|
export ALTERNATE_EDITOR=""
|
|
|
|
|
|
|
|
alias erl='rlwrap -a erl'
|
|
|
|
|
|
|
|
if which virtualenvwrapper.sh >/dev/null; then
|
|
|
|
source virtualenvwrapper.sh
|
|
|
|
fi
|
|
|
|
|
2013-08-14 02:11:19 +00:00
|
|
|
# Emacs Cask
|
|
|
|
if [ ! -d ${HOME}/.cask ]; then
|
2013-11-22 04:49:03 +00:00
|
|
|
curl -fsSkL https://raw.github.com/cask/cask.el/master/go | python
|
2013-05-23 23:17:11 +00:00
|
|
|
fi
|
2013-08-14 02:11:19 +00:00
|
|
|
export PATH="${HOME}/.cask/bin:$PATH"
|