#!/bin/zsh autoload zmv if [ -d $XDG_CONFIG_HOME/shell/rc.d ]; then for file in $XDG_CONFIG_HOME/shell/rc.d/*.sh; do source $file done fi if [ -d $XDG_CONFIG_HOME/shell/zshrc.d ]; then for file in $XDG_CONFIG_HOME/shell/zshrc.d/*.zsh; do source $file done fi