From 695b48937b9048d4dae6c97de2aeb3134b0195ba Mon Sep 17 00:00:00 2001 From: Jonny Barnes Date: Mon, 6 Jun 2022 17:34:28 +0100 Subject: [PATCH] Source the fig shell integrations correctly --- zshrc.zsh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/zshrc.zsh b/zshrc.zsh index fbd18ca..54c44eb 100644 --- a/zshrc.zsh +++ b/zshrc.zsh @@ -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