nix

configuration files that power my machines
Log | Files | Refs | README | LICENSE

bash_profile (254B)


      1 [[ "$-" == *i* ]] || return
      2 
      3 config_home="$HOME"
      4 
      5 . "$config_home"/.config/shell/early-funcs
      6 
      7 for file in "$config_home"/.config/{shell,bash}/profile/*; do
      8     [[ -e $file ]] && . "$file"
      9 done
     10 
     11 [[ -r "$config_home"/.bashrc ]] && . "$config_home"/.bashrc