From 7584819f598d9a2fcb1b21b8ca241d186666278c Mon Sep 17 00:00:00 2001 From: Paul Walker Date: Thu, 25 Aug 2022 22:41:12 +0100 Subject: [PATCH] zsh: add fig --- zshrc | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/zshrc b/zshrc index 1c6628f..f71bfb9 100644 --- a/zshrc +++ b/zshrc @@ -1,3 +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" # Add an entry to PATH, iff it's not already there. addpath() { wanted_path=$1 @@ -31,3 +33,6 @@ fi if [ -f ${HOME}/.zsh.d/local/${HOSTNAME}.zsh ] ; then source ${HOME}/.zsh.d/local/${HOSTNAME}.zsh fi + +# Fig post block. Keep at the bottom of this file. +[[ -f "$HOME/.fig/shell/zshrc.post.zsh" ]] && . "$HOME/.fig/shell/zshrc.post.zsh"