From b390cc4b07b3e9e168f5d4d0101866637b3b79cd Mon Sep 17 00:00:00 2001 From: Mike Beattie Date: Sun, 31 Jan 2021 20:19:44 +1300 Subject: ZSH: Add sourcing of host specific .zshenv Signed-off-by: Mike Beattie --- .zshenv | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.zshenv b/.zshenv index 04f3e78..313bebc 100644 --- a/.zshenv +++ b/.zshenv @@ -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 + -- cgit v1.2.3