home: zsh: include local-only config file
All checks were successful
continuous-integration/drone/push Build is passing

Useful for configuration options that should remain secret.
This commit is contained in:
Bruno BELANYI 2023-02-08 14:44:20 +00:00
parent 3a0fa3398d
commit 699b6b8e33

View file

@ -57,6 +57,11 @@ in
source ${./completion-styles.zsh}
source ${./extra-mappings.zsh}
source ${./options.zsh}
# Source local configuration
if [ -f "$ZDOTDIR/zshrc.local" ]; then
source "$ZDOTDIR/zshrc.local"
fi
'';
localVariables = {