bashrc (220B)
1 #!/bin/bash 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,bash}/rc/*; do 10 [[ -e $file ]] && . "$file" 11 done 12 13 PS1='$(_get_ps1)'