mirror of
https://github.com/correl/dotfiles.git
synced 2024-11-14 19:19:29 +00:00
44 lines
772 B
Bash
44 lines
772 B
Bash
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
|
|
antigen-lib
|
|
|
|
# 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
|
|
|
|
# Emacs Carton
|
|
if [ ! -d ${HOME}/.carton ]; then
|
|
curl -fsSkL https://raw.github.com/rejeep/carton/master/go | sh
|
|
fi
|
|
export PATH="${HOME}/.carton/bin:$PATH"
|