zsh: load local configuration if present
This commit is contained in:
parent
9378ae2b30
commit
7bc64134eb
1 changed files with 5 additions and 0 deletions
|
@ -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
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue