diff --git a/config/zsh/.zprofile b/config/zsh/.zprofile index cb8f469..af2473b 100644 --- a/config/zsh/.zprofile +++ b/config/zsh/.zprofile @@ -120,3 +120,8 @@ if [ -n "$(uname -r | sed -n 's/.*\( *Microsoft *\).*/\1/ip')" ]; then fi unset xdisplay fi + +# Load additional local configuration if present. +local_profile="$HOME/.local/etc/zsh/zprofile" +[ -r "$local_profile" ] && source "$local_profile" +unset local_profile diff --git a/config/zsh/.zshrc b/config/zsh/.zshrc index 354187d..a858df8 100644 --- a/config/zsh/.zshrc +++ b/config/zsh/.zshrc @@ -19,7 +19,7 @@ done unset filepath # Load additional local configuration if present. -local_config="$HOME/.local/etc/zsh/config.zsh" +local_config="$HOME/.local/etc/zsh/zshrc" [ -r "$local_config" ] && source "$local_config" unset local_config