Permalink
Cannot retrieve contributors at this time
Join GitHub today
GitHub is home to over 31 million developers working together to host and review code, manage projects, and build software together.
Sign up
Fetching contributors…

if [[ $TERM == "dumb" ]]; then # in emacs | |
PS1='%(?..[%?])%!:%~%# ' | |
# for tramp to not hang, need the following. cf: | |
# http://www.emacswiki.org/emacs/TrampMode | |
unsetopt zle | |
unsetopt prompt_cr | |
unsetopt prompt_subst | |
unfunction precmd | |
unfunction preexec | |
else | |
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 use oh-my-zsh | |
antigen bundles <<EOF | |
git | |
git-extras | |
git-remote-branch | |
pip | |
ssh-agent | |
nojhan/liquidprompt | |
zsh-users/zsh-syntax-highlighting | |
EOF | |
# Themes | |
# antigen-theme kphoen | |
antigen apply | |
unsetopt correct_all | |
fi | |
export PATH=$HOME/bin:$PATH | |
export EDITOR="emacsclient" | |
export ALTERNATE_EDITOR="" | |
alias erl='rlwrap -a erl' | |
if [ -d ${HOME}/.cabal/bin ]; then | |
export PATH="${HOME}/.cabal/bin:$PATH" | |
fi |