#!/usr/bin/env zsh # # Author : Dennis Eriksen # File : include # Created : 2024-09-10 # ################################################################################ # # This file is autoloaded by .zshrc, and actually loaded when executed # ################################################################################ # source files if they exist - will source the first file found if more than # one is provided for f in $@; do if [[ -e $f.zwc || -e $f ]]; then source $f return fi done # If we got here, we couldn't source any files return 1 # END OF FILE #################################################################