Rename .env to .shenv.

Requires updating symlinks.

Fixes #13.
This commit is contained in:
David Tomaschik
2022-10-18 14:43:33 -07:00
committed by David Tomaschik
parent 157e6ee20e
commit b628453b10
3 changed files with 2 additions and 2 deletions

View File

@@ -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

View File

@@ -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'