fa357bbd35
We no longer pollute yadr or prezto directories with custom code!
7 lines
180 B
Bash
7 lines
180 B
Bash
# Load any custom after code
|
|
if [ -d $HOME/.zsh.after/ ]; then
|
|
if [ "$(ls -A $HOME/.zsh.after/)" ]; then
|
|
for config_file ($HOME/.zsh.after/*.zsh) source $config_file
|
|
fi
|
|
fi
|