172:ff95afc589ea | 175:6a6b1f67a46e |
---|---|
1 # simple profile stuff that is common to both zsh and bash | |
2 | |
3 export EDITOR=vim | |
4 export PERL_CPANM_OPT='-n --prompt --reinstall' | |
5 export DEVEL_REPL_PROFILE='Standard' | |
6 | |
7 alias hgcd='cd $(hg root)' | |
8 | |
9 if [ -f ~/.profile.common.local ]; then | |
10 source ~/.profile.common.local | |
11 fi | |
12 |