fix zexists sourcing

This commit is contained in:
Daylin Morgan 2023-02-22 15:25:19 -06:00
parent 4bc6501144
commit 24dfe67807
2 changed files with 3 additions and 3 deletions

View file

@ -22,10 +22,9 @@ function source-zshcmdd {
# sort and source conf files # sort and source conf files
for rcfile in ${(o)conf_files}; do for rcfile in ${(o)conf_files}; do
# ignore files that begin with a tilde and antircfiles # ignore files that begin with a tilde and antircfiles
case ${rcfile:t} in 'anti'*|'~'*) continue;; esac case ${rcfile:t} in 'anti'* | '~'*) continue;; esac
# source files only if exe with that name exists # source files only if exe with that name exists
if (( ! $+commands[{rcfile:t:r}] )); then if (( $+commands[${rcfile:t:r}] )); then
source "$rcfile" source "$rcfile"
else else
# if it doesn't exist try the anti version # if it doesn't exist try the anti version

View file

@ -0,0 +1 @@
alias lt="tree -L 3"