mirror of
https://github.com/keanuplayz/dotfiles.git
synced 2024-08-15 02:33:12 +00:00
11 lines
292 B
Text
11 lines
292 B
Text
|
#!/usr/bin/env zsh
|
||
|
|
||
|
if [[ -n "$DOTFILES_PATH" ]]; then
|
||
|
for script in functions path exports; do
|
||
|
source "$DOTFILES_PATH/lib/$script.zsh"
|
||
|
source_if_exists "$DOTFILES_PATH/custom/$script.zsh"
|
||
|
done
|
||
|
else
|
||
|
echo "please, set DOTFILES_PATH to the path to your dotfiles directory" >&2
|
||
|
fi
|