# This is for the interactive shell # enable colors autoload -U colors colors # enable auto completion autoload -U compinit compinit -C zstyle ':completion:*' completer _expand _complete _match _prefix # I want word boundary to be similar to bash autoload -U select-word-style select-word-style bash # keep the prompt simple and short PROMPT="%1~ %# " # emacs style bindkey -e # load custom aliases source ~/.aliases # aliases for some directories hash -d s="$HOME/src/source" hash -d eb="$HOME/src/source/eventbus" hash -d ops="$HOME/src/twitter-ops/" hash -d science="$HOME/src/source/science/" hash -d gcode="$HOME/gocode/src/" # this is for local stuff [ -f ~/.zlogin_local ] && source ~/.zlogin_local