.zshrc
changeset 977 0b4affe58cff
parent 826 54d42c57cc4d
--- a/.zshrc	Tue Jun 01 11:55:32 2021 +0300
+++ b/.zshrc	Tue Jun 01 17:34:17 2021 +0300
@@ -3,8 +3,8 @@
 . /etc/zshrc
 fi
 
-if [[ -f ~/.env ]]; then
-  . ~/.env
+if [[ -f ~/.bash.env ]]; then
+  . ~/.bash.env
 fi
 
 PS1=$'%?|%n@%m %~\nzsh# '
@@ -77,3 +77,11 @@
 
 # Renaming with globbing
 # autoload zmv
+
+################################################################
+# Load user defined settings.
+# Placed to the end to allow override skel settings.
+
+if [[ -f ~/.env ]]; then
+  . ~/.env
+fi