[zsh] deploy work specific export sourcing

This commit is contained in:
Julien Rabier 2021-03-09 18:11:36 +01:00
parent 2f1f13a15e
commit c8ad304064

View File

@ -41,6 +41,11 @@ source ~/.zsh/functions
source ~/.zsh/exports source ~/.zsh/exports
source ~/.zsh/completion/fzf-completion.zsh source ~/.zsh/completion/fzf-completion.zsh
WORK_EXPORT="~/.zsh/exports_work"
if [ -e "$WORK_EXPORT" ]; then
source "$WORK_EXPORT"
fi
{{- if eq .chezmoi.hostname "taupo" }} {{- if eq .chezmoi.hostname "taupo" }}
source ~/.zsh/aliases_taupo source ~/.zsh/aliases_taupo
source ~/.zsh/functions_taupo source ~/.zsh/functions_taupo