From 88fd55b0a0f0fa143773e40c11db828a2946e735 Mon Sep 17 00:00:00 2001 From: Paul Walker Date: Thu, 24 Nov 2022 12:00:40 +0000 Subject: [PATCH] zsh: add fig --- zshrc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/zshrc b/zshrc index f71bfb9..af7192b 100644 --- a/zshrc +++ b/zshrc @@ -1,5 +1,5 @@ # Fig pre block. Keep at the top of this file. -[[ -f "$HOME/.fig/shell/zshrc.pre.zsh" ]] && . "$HOME/.fig/shell/zshrc.pre.zsh" +[[ -f "$HOME/.fig/shell/zshrc.pre.zsh" ]] && builtin source "$HOME/.fig/shell/zshrc.pre.zsh" # Add an entry to PATH, iff it's not already there. addpath() { wanted_path=$1 @@ -35,4 +35,4 @@ if [ -f ${HOME}/.zsh.d/local/${HOSTNAME}.zsh ] ; then fi # Fig post block. Keep at the bottom of this file. -[[ -f "$HOME/.fig/shell/zshrc.post.zsh" ]] && . "$HOME/.fig/shell/zshrc.post.zsh" +[[ -f "$HOME/.fig/shell/zshrc.post.zsh" ]] && builtin source "$HOME/.fig/shell/zshrc.post.zsh"