diff --git a/dotfiles/bashrc b/dotfiles/bashrc index b7483d7..a08bc5b 100755 --- a/dotfiles/bashrc +++ b/dotfiles/bashrc @@ -1,5 +1,5 @@ # Load env first -if [ -f $HOME/.env ] ; then source $HOME/.env ; fi +if [ -f $HOME/.shenv ] ; then source $HOME/.shenv ; fi # History settings HISTCONTROL=ignoredups:ignorespace diff --git a/dotfiles/profile b/dotfiles/profile index ec983de..b829cb7 100755 --- a/dotfiles/profile +++ b/dotfiles/profile @@ -4,7 +4,7 @@ # Should only use POSIX constructs. # Always load ENV -test -f "$HOME/.env" && . "$HOME/.env" +test -f "$HOME/.shenv" && . "$HOME/.shenv" # Setup GREP_COLORS export GREP_COLOR='01;31' diff --git a/dotfiles/env b/dotfiles/shenv similarity index 100% rename from dotfiles/env rename to dotfiles/shenv