zsh/zshenv
2025-11-24 11:15:24 +01:00

11 lines
196 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
}
skip_global_compinit=1