Last active
September 8, 2015 01:23
-
-
Save cchamberlain/9cfb3b207f64df45a7ac to your computer and use it in GitHub Desktop.
dot-zshrc
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env zsh | |
if [[ -s "$ZPREZTODIR/init.zsh" ]]; then | |
. "$ZPREZTODIR/init.zsh" | |
fi | |
. "$ZSCRIPTDIR/checks.zsh" | |
. "$ZSCRIPTDIR/colors.zsh" | |
. "$ZSCRIPTDIR/setopt.zsh" | |
. "$ZSCRIPTDIR/exports.zsh" | |
. "$ZSCRIPTDIR/bindkeys.zsh" | |
. "$ZSCRIPTDIR/prompt.zsh" | |
. "$ZSCRIPTDIR/completion.zsh" | |
. "$ZSCRIPTDIR/hashes.zsh" | |
. "$ZSCRIPTDIR/aliases.zsh" | |
. "$ZSCRIPTDIR/functions.zsh" | |
. "$ZSCRIPTDIR/history.zsh" | |
[[ -f "$ZPERSONAL_PATH" ]] && . "$ZPERSONAL_PATH" | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment