.bashrc
changeset 977 0b4affe58cff
parent 976 38803c50d0ed
child 978 8f0e780cabcf
--- a/.bashrc	Tue Jun 01 11:55:32 2021 +0300
+++ b/.bashrc	Tue Jun 01 17:34:17 2021 +0300
@@ -2,11 +2,8 @@
 # set -x
 # set -u
 
-# XXX
-# [[ -f /etc/bashrc ]] && . /etc/bashrc
-
-if [[ -f ~/.env ]]; then
-  . ~/.env
+if [[ -f ~/.env.bash ]]; then
+  . ~/.env.bash
 fi
 
 shopt -s checkwinsize
@@ -227,11 +224,11 @@
 fi
 
 ################################################################
-# Load custom settings (user editable).
+# Load user defined settings.
 # Placed to the end to allow override skel settings.
 
-if [[ -f ~/.env.local ]]; then
-  . ~/.env.local
+if [[ -f ~/.env ]]; then
+  . ~/.env
 fi
 
 ################################################################