Paste the following into ~/.zshrc:
# Source every shell file in .dotfiles
for file in "$HOME/.dotfiles"/*.*sh; do
[[ -e "$file" ]] || continue # Skip if no .*sh files are found
[[ -r "$file" ]] &&
# echo "source $file" && # uncomment to debug