feat (zshrc): instead of sourcing files individually just do so with files from a certain directory

This commit is contained in:
eeemsi 2023-07-21 10:02:12 +02:00
parent 319f0bb0a9
commit 9c000263ac
1 changed files with 6 additions and 1 deletions

7
zshrc
View File

@ -101,4 +101,9 @@ precmd() {
fi
}
source ~/.zsh/term_title
# include reading files from directory
for f in "${HOME}"/.zsh/*; do
source "$f"
done
unset f