10 lines
173 B
Bash
Executable file
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
|
|
}
|