zsh: load local configuration if present

This commit is contained in:
Fernando Schauenburg 2024-03-08 21:53:00 +01:00
parent 9378ae2b30
commit 7bc64134eb

View file

@ -13,6 +13,11 @@ for filepath in $ZDOTDIR/functions/*; do
done done
unset filepath unset filepath
# Load additional local configuration if present.
local_config="$HOME/.local/etc/zsh/config.zsh"
[ -r "$local_config" ] && source "$local_config"
unset local_config
# Prevent ctrl-s from freezing the terminal. # Prevent ctrl-s from freezing the terminal.
stty stop undef stty stop undef