dotar/zsh/zzzz_after.zsh
Yan Pritzker fa357bbd35 Ability to store your own prompts in ~/.zsh.prompts [Close #152]
We no longer pollute yadr or prezto directories with custom code!
2012-09-26 11:05:28 -07:00

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