my-yadm/.local/dotfiles/functions/reload_dotfiles.zsh

9 lines
147 B
Bash

function reload_dotfiles ()
{
while read f
do
source "$f"
done < <(find "${HOME}/.local/dotfiles" \( -type l -o -type f \) -name '*.zsh')
}