From fb41da5646dedeca18203feb0de631c379585013 Mon Sep 17 00:00:00 2001 From: Justin Garrison Date: Tue, 6 Jan 2015 08:50:21 -0800 Subject: [PATCH] moved local sourcing --- runcoms/zshrc | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/runcoms/zshrc b/runcoms/zshrc index 39256430..87fd284b 100644 --- a/runcoms/zshrc +++ b/runcoms/zshrc @@ -10,8 +10,9 @@ if [[ -s "${ZDOTDIR:-$HOME}/.zprezto/init.zsh" ]]; then source "${ZDOTDIR:-$HOME}/.zprezto/init.zsh" fi -# Customize to your needs... -# Source custom configuration +# Source custom configuration if present if [[ -s "${ZDOTDIR:-$HOME}/zshrc.local" ]]; then source "${ZDOTDIR:-$HOME}/zshrc.local" fi + +# Customize to your needs...