From bf1179145b6d5aca3523eea32d675dd2705aaef2 Mon Sep 17 00:00:00 2001 From: Johannes Findeisen Date: Sat, 13 Jun 2015 03:02:48 +0200 Subject: [PATCH] added a file check for ~/.zshprivate before sourcing --- .zshrc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.zshrc b/.zshrc index 1b379d11..2e9e9196 100644 --- a/.zshrc +++ b/.zshrc @@ -2,7 +2,10 @@ export PATH=$PATH:$HOME/bin # Now source some stuff that should not be public +if [ -e ~/.zshprivate ] +then source ~/.zshprivate +fi # History settings HISTSIZE=100000