zsh/zshenv
2025-09-03 11:13:27 +02:00

10 lines
173 B
Bash
Executable file

if [ -z "$ZDOTDIR" ]; then
export ZDOTDIR=$HOME/.config/zsh
fi
exists() { command -v "$@" >/dev/null }
function(){
local i
for i in $ZDOTDIR/env/*.zsh; do
. $i
done
}