.zshrc (116B)
1 export ZSH_RC_SNIPPETS=(~/.zshrc.d/*) 2 3 for file in ~/.zshrc.d/* ; do 4 if [ -f "$file" ] ; then 5 . "$file" 6 fi 7 done