#!/bin/zsh # Set up zsh for interactive use (options, prompt, aliases, etc.) # On MacOS, manipulate PATH and MANPATH here (see explanation in .zshenv). [ "$(uname -s)" = "Darwin" ] && source "$XDG_CONFIG_HOME/shell/path.sh" # Source additional configurations if available. while read -r f; do [ -f "$f" ] && source "$f"; done <