zsh/zshenv
2020-10-28 10:02:38 +01:00

11 lines
161 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
}