dotfiles/zsh/func/do_init_functions

9 lines
143 B
Text
Raw Normal View History

#!/usr/bin/env zsh
# Eryn Wells <eryn@erynwells.me>
for func in ${(P)${1}}; do
2022-05-26 09:11:35 -07:00
if autoload -Uz $func &> -; then
$func
fi
done