From 79e4cf3eae95d5576ea51aa1a13d1e63fed153eb Mon Sep 17 00:00:00 2001 From: Mika Suomalainen Date: Sun, 2 Oct 2011 17:05:17 +0300 Subject: [PATCH] zshrc: Added sourcing for zsh_custom if present. zsh_custom will be sourced if it exists. I sometimes need something which isn't part of any file and must be only on that one computer. --- zshrc | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/zshrc b/zshrc index e0eac1f6..5a683891 100644 --- a/zshrc +++ b/zshrc @@ -56,3 +56,8 @@ fi if [ -f ~/.zsh_tmux ]; then source ~/.zsh_tmux fi + +if [ -f ~/.zsh_tmux ]; then + source ~/.zsh_custom + fi +