From c7e0314bf71a103e596d65c85bb016aa82b35217 Mon Sep 17 00:00:00 2001 From: Eric Renfro Date: Wed, 6 Jun 2018 10:01:54 -0400 Subject: [PATCH] Fixed zshrc auto includes --- zshrc | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/zshrc b/zshrc index a1bc218..fd26e27 100644 --- a/zshrc +++ b/zshrc @@ -39,7 +39,8 @@ fi stty -ixon # Include local functions/aliases/environments: -while read file; do - source "$file" +while read f +do + source "$f" done < <(find "${HOME}/.local/dotfiles/" -type f -name '*.zsh')