zshrc: Enable usage of additional local configuration

This commit is contained in:
Thomas Preisner 2023-11-16 22:51:52 +01:00
parent 07e06558b6
commit a118ced017

5
zshrc
View file

@ -9,3 +9,8 @@ source ~/.zsh/history.zsh
source ~/.zsh/aliases.zsh
source ~/.zsh/multiplexer.zsh
source ~/.zsh/exports.zsh
# Try loading additional local config if available
if [ -f ~/.zsh/custom.zsh ]; then
source ~/.zsh/custom.zsh
fi