How (and Why) You Should Split Your .bashrc or .zshrc Files
Objective
To split our .bashrc/.zshrc into multiple files, put them in zshrc older, and load them one by one:
for FILE in ~/zshrc/*; do
source $FILE
done
Background
.bashrc/.zshrc are executed mainly when we start the terminal app. Usually...
ranelpadon.hashnode.dev5 min read