diff options
author | Mike Beattie <mike@ethernal.org> | 2021-01-31 20:19:44 +1300 |
---|---|---|
committer | Mike Beattie <mike@ethernal.org> | 2021-01-31 20:19:44 +1300 |
commit | b390cc4b07b3e9e168f5d4d0101866637b3b79cd (patch) | |
tree | 29e9078b27bd3839e64bd78a486df35f7d48ff00 | |
parent | 0d0b232d01345c04453cf0652f23aa6688b5da03 (diff) |
ZSH: Add sourcing of host specific .zshenv
Signed-off-by: Mike Beattie <mike@ethernal.org>
-rw-r--r-- | .zshenv | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -41,3 +41,8 @@ export DEBFULLNAME='Mike Beattie' HISTFILE=~/.history SAVEHIST=1000 HISTSIZE=1000 + +if [ -f "${HOME}/.zshenv.$(hostname)" ];then + source "${HOME}/.zshenv.$(hostname)" +fi + |