dotar/zsh/0000_before.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

8 lines
201 B
Bash

# Load any user customizations prior to load
#
if [ -d $HOME/.zsh.before/ ]; then
if [ "$(ls -A $HOME/.zsh.before/)" ]; then
for config_file ($HOME/.zsh.before/*.zsh) source $config_file
fi
fi