|
@ -1,9 +1,9 @@ |
|
|
# load custom executable functions |
|
|
# load custom executable functions |
|
|
for function in ~/.zsh/functions/*; do |
|
|
|
|
|
|
|
|
for function in "$ZDOTDIR"/functions/*; do |
|
|
source $function |
|
|
source $function |
|
|
done |
|
|
done |
|
|
|
|
|
|
|
|
# extra files in ~/.zsh/configs/pre , ~/.zsh/configs , and ~/.zsh/configs/post |
|
|
|
|
|
|
|
|
# extra files in $ZDOTDIR/configs/pre , $ZDOTDIR/configs , and $ZDOTDIR/configs/post |
|
|
# these are loaded first, second, and third, respectively. |
|
|
# these are loaded first, second, and third, respectively. |
|
|
_load_settings() { |
|
|
_load_settings() { |
|
|
_dir="$1" |
|
|
_dir="$1" |
|
@ -32,7 +32,7 @@ _load_settings() { |
|
|
fi |
|
|
fi |
|
|
fi |
|
|
fi |
|
|
} |
|
|
} |
|
|
_load_settings "$HOME/.zsh/configs" |
|
|
|
|
|
|
|
|
_load_settings "$ZDOTDIR/configs" |
|
|
|
|
|
|
|
|
declare -A hostname_colors |
|
|
declare -A hostname_colors |
|
|
|
|
|
|