forked from webpro/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.zshrc
22 lines (17 loc) · 893 Bytes
/
.zshrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
###############################################################################
# Zim Initialization #
###############################################################################
ZIM_HOME=~/.zim
# Install missing modules and update ${ZIM_HOME}/init.zsh if missing or outdated.
if [[ ! ${ZIM_HOME}/init.zsh -nt ${ZIM_CONFIG_FILE:-${ZDOTDIR:-${HOME}}/.zimrc} ]]; then
source ${HOMEBREW_PREFIX}/opt/zimfw/share/zimfw.zsh init -q
fi
# Initialize modules.
source ${ZIM_HOME}/init.zsh
###############################################################################
# User-Specific Configurations (Loaded After Zim) #
###############################################################################
# Source .bash_profile if it exists
if [ -f $HOME/.bash_profile ]; then
source $HOME/.bash_profile
fi