added a file check for ~/.zshprivate before sourcing

This commit is contained in:
Johannes Findeisen 2015-06-13 03:02:48 +02:00
commit bf1179145b

3
.zshrc
View file

@ -2,7 +2,10 @@
export PATH=$PATH:$HOME/bin export PATH=$PATH:$HOME/bin
# Now source some stuff that should not be public # Now source some stuff that should not be public
if [ -e ~/.zshprivate ]
then
source ~/.zshprivate source ~/.zshprivate
fi
# History settings # History settings
HISTSIZE=100000 HISTSIZE=100000