Source the fig shell integrations correctly

This commit is contained in:
Jonny Barnes 2022-06-06 17:34:28 +01:00
parent 92af579f43
commit 695b48937b

View file

@ -2,7 +2,7 @@
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"
. "$HOME/.fig/shell/zshrc.pre.zsh"
fi
# User configuration
@ -142,5 +142,5 @@ 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"
. "$HOME/.fig/shell/zshrc.post.zsh"
fi