export DOTFILES=$HOME/dotfiles export ZSH=$HOME/.oh-my-zsh export PROJECTS=$HOME/VersionControl if [[ -a ~/.localrc ]]; then source ~/.localrc fi for config_file ($DOTFILES/**/*.zsh) source $config_file ZSH_THEME="agnoster" plugins=(git) source $ZSH/oh-my-zsh.sh source $HOME/.profile unsetopt ignoreeof autoload -U compinit compinit for config_file ($DOTFILES/**/completion.zsh); do if test -f $config_file; then source $config_file fi done