diff --git a/home/zshrc b/home/zshrc index 9422bda..bf9f787 100644 --- a/home/zshrc +++ b/home/zshrc @@ -12,6 +12,15 @@ autoload -Uz compinit compinit # End of lines added by compinstall +# Source the system wid bash configuration +shrc_d=/usr/local/etc/sh/shrc.d +if [ -d "$shrc_d" ]; then + for i in "${shrc_d}/"*; do + . "$i" + done +fi +unset shrc_d + # Bindings # create a zkbd compatible hash; # to add other keys to this hash, see: man 5 terminfo diff --git a/etc/bash/bashrc.d/aliases.bashrc b/usr/local/etc/sh/shrc.d/aliases.bashrc similarity index 100% rename from etc/bash/bashrc.d/aliases.bashrc rename to usr/local/etc/sh/shrc.d/aliases.bashrc diff --git a/etc/bash/bashrc.d/functions.bashrc b/usr/local/etc/sh/shrc.d/functions.bashrc similarity index 100% rename from etc/bash/bashrc.d/functions.bashrc rename to usr/local/etc/sh/shrc.d/functions.bashrc