Skip to content

Commit

Permalink
Handle Fig not being installed
Browse files Browse the repository at this point in the history
  • Loading branch information
conradbeach committed May 31, 2022
1 parent bf4fed5 commit 7ffe1f2
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .zshrc
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Fig pre block. Keep at the top of this file.
. "$HOME/.fig/shell/zshrc.pre.zsh"
if [ -f "$HOME/.fig/shell/zshrc.pre.zsh" ]; then
. "$HOME/.fig/shell/zshrc.pre.zsh"
fi

export ZSH=~/.oh-my-zsh # Path to your oh-my-zsh installation.

Expand Down Expand Up @@ -199,4 +201,6 @@ test -e "${HOME}/.iterm2_shell_integration.zsh" && source "${HOME}/.iterm2_shell
HEROKU_AC_ZSH_SETUP_PATH=~/Library/Caches/heroku/autocomplete/zsh_setup && test -f $HEROKU_AC_ZSH_SETUP_PATH && source $HEROKU_AC_ZSH_SETUP_PATH;

# Fig post block. Keep at the bottom of this file.
. "$HOME/.fig/shell/zshrc.post.zsh"
if [ -f "$HOME/.fig/shell/zshrc.post.zsh" ]; then
. "$HOME/.fig/shell/zshrc.post.zsh"
fi

0 comments on commit 7ffe1f2

Please sign in to comment.