11 lines
196 B
Bash
Executable file
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
|