Created
January 22, 2019 11:05
-
-
Save shizonic/d6fdf1663b926fddd67e04c39c50a9c0 to your computer and use it in GitHub Desktop.
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
| # | |
| # User configuration sourced by interactive shells | |
| # | |
| # Define Zim location | |
| ZIM_HOME=${ZDOTDIR:-${HOME}}/.zim | |
| # Start Zim | |
| [[ -s ${ZIM_HOME}/init.zsh ]] && source ${ZIM_HOME}/init.zsh | |
| # Source personal zshrc files | |
| for rc in ${ZDOTDIR}/zshrc.d/*.zsh(N); do | |
| source ${rc} | |
| done | |
| unset rc |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment