dotfiles/.zshrc

20 lines
298 B
Bash
Raw Normal View History

#!/bin/zsh
2019-02-18 17:41:50 +00:00
2019-03-12 15:01:30 +00:00
autoload zmv
if [ -d $XDG_CONFIG_HOME/shell/rc.d ]; then
for file in $XDG_CONFIG_HOME/shell/rc.d/*.sh; do
source $file
2019-02-24 11:34:40 +00:00
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
2018-12-19 11:38:19 +00:00
2019-02-04 02:32:45 +00:00