diff --git a/zshrc.zsh b/zshrc.zsh index d98836b..c287e54 100644 --- a/zshrc.zsh +++ b/zshrc.zsh @@ -1,6 +1,6 @@ +# Fig pre block. Keep at the top of this file. # Fig binary can be installed to $HOME, so ammend the $PATH export PATH="$PATH:$HOME/.local/bin" -# Fig pre block. Keep at the top of this file. if [ -f "$HOME/.fig/shell/zshrc.pre.zsh" ]; then . "$HOME/.fig/shell/zshrc.pre.zsh" fi @@ -80,6 +80,9 @@ export PATH="$PATH:/usr/local/go/bin:/usr/local/opt/go/libexec/bin:$GOPATH/bin" GPG_TTY=`tty` export GPG_TTY +# Add Totara Docker helper functions +export PATH="$PATH:$HOME/git/totara-docker-dev/bin" + # Set the rip (Rm ImProved) graveyard export GRAVEYARD="$HOME/.local/share/Trash" @@ -141,6 +144,4 @@ fi eval "$(starship init zsh)" # Fig post block. Keep at the bottom of this file. -if [ -f "$HOME/.fig/shell/zshrc.post.zsh" ]; then - . "$HOME/.fig/shell/zshrc.post.zsh" -fi +[[ -f "$HOME/.fig/shell/zshrc.post.zsh" ]] && . "$HOME/.fig/shell/zshrc.post.zsh"