-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.zshrc
19 lines (15 loc) · 786 Bytes
/
.zshrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# **********************************************************************#
# Source related files #
#***********************************************************************#
if [[ -s "${ZDOTDIR:-$HOME}/.zprezto/init.zsh" ]]; then
source "${ZDOTDIR:-$HOME}/.zprezto/init.zsh"
fi
[ -f $HOME/.exports ] && source $HOME/.exports
[ -f $HOME/.functions ] && source $HOME/.functions
[ -f $HOME/.aliases ] && source $HOME/.aliases
test -e "${HOME}/.iterm2_shell_integration.zsh" && source "${HOME}/.iterm2_shell_integration.zsh"
if [[ $verbose_resource ]]; then echo "SOURCED .zshrc"; fi
# This should be the last line of the file
# For local changes
# Don't make edits below this
[ -f "$HOME/.zshrc.local" ] && source "$HOME/.zshrc.local"