# HG changeset patch # User Meredith Howard # Date 1583879556 14400 # Node ID b8501cb649b6a96369e0ef0a10fcb9134dc51619 # Parent 5ebdbddeafde42a9371c3b79b95b58258b054d82 automatically try to pick up local::lib diff --git a/.profile.common b/.profile.common --- a/.profile.common +++ b/.profile.common @@ -21,6 +21,14 @@ export DEVEL_REPL_PROFILE='Standard' export ASDF_CONCURRENCY='2' export RUBY_EXTRA_CONFIGURE_OPTIONS="--enable-shared --enable-install-doc" +if [ -d ~/perl5/lib ]; then + eval "$(perl -Mlocal::lib)" +fi + +if [ -d ~/.asdf ]; then + source ~/.asdf/asdf.sh +fi + alias l='ls -lFh' #size,show type,human readable alias la='ls -lAFh' #long list,show almost all,show type,human readable alias lt='ls -ltFh' #long list,sorted by date,show type,human readable @@ -36,10 +44,6 @@ alias tmux-env='eval "$(tmux show-enviro alias :e=vim alias :q=exit -if [ -d ~/.asdf ]; then - source ~/.asdf/asdf.sh -fi - if [ -f ~/.profile.common.local ]; then source ~/.profile.common.local fi