5 lines
129 B
Bash
5 lines
129 B
Bash
|
# Load any custom after code
|
||
|
if [ -d $HOME/.zsh.after/ ]; then
|
||
|
for config_file ($HOME/.zsh.after/*.zsh) source $config_file
|
||
|
fi
|