Files
dotfiles/zsh/zshrc

10 lines
147 B
Bash

[[ -z "$PS1" ]] && return
_zshdir="$HOME/.zsh"
for file in "${_zshdir}"/* ; do
if [[ -e "$file" ]] ; then
source "$file"
fi
done