Include .zshrc.local if it exists

This commit is contained in:
Oliver Davies 2019-10-06 01:36:38 +01:00 committed by Oliver Davies
parent b66278f828
commit 29c35a2603

View file

@ -98,3 +98,6 @@ ZLE_REMOVE_SUFFIX_CHARS=""
for zsh_source in $HOME/.zsh_profile.d/*.zsh; do
source $zsh_source
done
# Local config
[[ -f ~/.zshrc.local ]] && source ~/.zshrc.local