if [ -f $HOME/.zsh/zsh.conf ] then source $HOME/.zsh/zsh.conf else echo 'CONFIGURATION NOT SET!\n Copy zsh.conf from the example_configs directory and set up your preferences!\n Setting basic parameters only!' >&2 source $HOME/.zsh/history source $HOME/.zsh/interactive source $HOME/.zsh/exports source $HOME/.zsh/bindkeys source $HOME/.zsh/completion source $HOME/.zsh/setopt PROMPT="UNCONFIGURED% " exit 1 fi source $HOME/.zsh/history source $HOME/.zsh/alias source $HOME/.zsh/interactive source $HOME/.zsh/exports source $HOME/.zsh/bindkeys source $HOME/.zsh/completion source $HOME/.zsh/setopt if [ $SYNTAX_HIGHLIGHT ] then source $HOME/.zsh/zsh-syntax-highlight/zsh-syntax-highlighting.zsh fi source $HOME/.zsh/prompt if [ -f $HOME/.zsh/custom ] then source $HOME/.zsh/custom fi PATH=$PATH:$HOME/bin:/opt/java/current/bin