19 lines
298 B
Bash
19 lines
298 B
Bash
#!/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
|
|
|
|
|
|
|
|
|