Mostly for profiling, but I think it's cool to have status occasionally. In the process, I also did some clean up, moving some stuff between profile, rc, and env.
15 lines
322 B
Bash
15 lines
322 B
Bash
# .zprofile
|
|
# vim:ft=zsh
|
|
#
|
|
# Login shell setup
|
|
#
|
|
# Eryn Wells <eryn@erynwells.me>
|
|
|
|
print_info_noisy 1 'Initializing login shell'
|
|
|
|
[ -e $HOME/.profile ] && source $HOME/.profile
|
|
|
|
# Any ZSH stuff goes here.
|
|
|
|
[ -e $HOME/.profile.$SYS ] && source $HOME/.profile.$SYS
|
|
[ -e $HOME/.profile.local ] && source $HOME/.profile.local
|