LOCAL_BIN="$HOME/.local/bin"

if [[ ! ":$PATH:" == *:"$LOCAL_BIN":* ]]; then
   PATH=$LOCAL_BIN:$PATH
fi

# User specific aliases and functions
if [ -d ~/.zshrc.d ]; then
    for rc in ~/.zshrc.d/*; do
        if [ -f "$rc" ]; then
            . "$rc"
        fi
    done
fi
unset rc
