zsh: add fig

This commit is contained in:
2022-11-24 12:00:40 +00:00
parent 49be483eec
commit 88fd55b0a0

4
zshrc
View File

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