Fix fig integration

This commit is contained in:
Jonny Barnes 2022-06-06 17:26:37 +01:00
parent 016562585a
commit f0a795d8ac

View file

@ -1,7 +1,9 @@
# Fig binary can be installed to $HOME, so ammend the $PATH # Fig binary can be installed to $HOME, so ammend the $PATH
export PATH="$PATH:$HOME/.local/bin" export PATH="$PATH:$HOME/.local/bin"
# Fig pre block. Keep at the top of this file. # Fig pre block. Keep at the top of this file.
eval "$(fig init zsh pre)" if [ -f "$HOME/.fig/shell/zshrc.pre.zsh" ]; then
"$HOME/.fig/shell/zshrc.pre.zsh"
fi
# User configuration # User configuration
# history # history
@ -139,5 +141,6 @@ fi
eval "$(starship init zsh)" eval "$(starship init zsh)"
# Fig post block. Keep at the bottom of this file. # Fig post block. Keep at the bottom of this file.
eval "$(fig init zsh post)" if [ -f "$HOME/.fig/shell/zshrc.post.zsh" ]; then
"$HOME/.fig/shell/zshrc.post.zsh"
fi