zsh/zshenv
2023-08-21 11:46:14 +02:00

10 lines
160 B
Bash
Executable file

export ZDOTDIR="${$(readlink $HOME/.zshenv):h:a}"
exists() { command -v "$@" >/dev/null }
function(){
local i
for i in $ZDOTDIR/env/*.zsh; do
. $i
done
}