automatically try to pick up local::lib

Tue, 10 Mar 2020 18:32:36 -0400

author
Meredith Howard <mhoward@roomag.org>
date
Tue, 10 Mar 2020 18:32:36 -0400
changeset 851
b8501cb649b6
parent 850
5ebdbddeafde
child 852
cf73e0ff4258

automatically try to pick up local::lib

.profile.common file | annotate | diff | comparison | revisions
--- 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

mercurial