zprofile (248B)
1 #!/bin/zsh 2 3 [[ "$-" == *i* ]] || return 4 5 config_home="$HOME" 6 7 . "$config_home"/.config/shell/early-funcs 8 9 for file in "$config_home"/.config/{shell,zsh}/profile/*(N); do 10 . "$file" 11 done 12 13 [[ -r "$config_home"/.zshrc ]] && . "$config_home"/.zshrc