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