diff options
Diffstat (limited to 'tag-zsh')
-rwxr-xr-x | tag-zsh/config/zsh/zshenv | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tag-zsh/config/zsh/zshenv b/tag-zsh/config/zsh/zshenv index ae5f1cd..df793cf 100755 --- a/tag-zsh/config/zsh/zshenv +++ b/tag-zsh/config/zsh/zshenv @@ -56,3 +56,13 @@ then envoy -t gpg-agent eval $(envoy -p) fi + +if [[ -f $ZDOTDIR/zshenv.local ]] +then + . $ZDOTDIR/zshenv.local +fi + +if [[ -f $ZDOTDIR/zshenv.private ]] +then + . $ZDOTDIR/zshenv.private +fi |