10 lines
155 B
Bash
Executable file
10 lines
155 B
Bash
Executable file
export ZDOTDIR=${XDG_CONFIG_HOME:-$HOME/.config}/zsh
|
|
|
|
for i in $ZDOTDIR/env/*.zsh; do
|
|
. $i
|
|
done
|
|
|
|
if [[ -e $ZDOTDIR/dirs ]]; then
|
|
source $ZDOTDIR/dirs
|
|
fi
|