12 lines
197 B
Bash
Executable file
12 lines
197 B
Bash
Executable file
#!/usr/bin/env zsh
|
|
|
|
# Prefetch paths
|
|
source "$ZDOTDIR/conf.d/path.zsh"
|
|
|
|
for file in $ZDOTDIR/conf.d/*; do
|
|
if [[ "$file" == *"path.zsh" ]]; then
|
|
continue
|
|
fi
|
|
source "$file"
|
|
done
|
|
|