1
0
Fork 0
mirror of https://github.com/MillironX/dotfiles.git synced 2024-11-21 21:26:04 +00:00

Add in workaround for fpath

Signed-off-by: Thomas A. Christensen II <25492070+MillironX@users.noreply.github.com>
This commit is contained in:
Thomas A. Christensen II 2021-10-20 08:27:30 -05:00
parent 0e971860ad
commit 219c25e0f0
Signed by: millironx
GPG key ID: 139C07724802BC5D

View file

@ -1,4 +1,19 @@
# shellcheck shell=zsh
{{- if (eq .cluster "scinet") -}}
# Workaround for SCINet admins clobbering fpath
ZEXECDIR=$(dirname $(command -v zsh))
if [ -d $ZEXECDIR/../share/zsh/functions ]; then
fpath+=$(realpath $ZEXECDIR/../share/zsh/functions)
else
for ZSHAREDIR in $ZEXECDIR/../share/zsh/*; do
if [ -d $ZSHAREDIR/functions ]; then
fpath+=$(realpath $ZSHAREDIR/functions)
fi
done
fi
{{- end -}}
# Linuxbrew setup
if [ -d $HOME/../linuxbrew/.linuxbrew ]; then
BREWPATH=$HOME/../linuxbrew/.linuxbrew