zsh: add fig

This commit is contained in:
2022-08-25 22:41:12 +01:00
parent 4c619cd170
commit 7584819f59

5
zshrc
View File

@@ -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"