home: zsh: include local-only config file
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
Useful for configuration options that should remain secret.
This commit is contained in:
parent
3a0fa3398d
commit
699b6b8e33
|
@ -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 = {
|
||||
|
|
Loading…
Reference in a new issue