2aaa8a59f2a0

zsh: add an optional zshrc_local hook
[view raw] [browse files]
author Steve Losh <steve@stevelosh.com>
date Tue, 23 Nov 2010 10:01:30 -0500
parents de553e3bb7c6
children 10ee1199d4c1
branches/tags (none)
files .zshrc

Changes

--- a/.zshrc	Tue Nov 23 09:56:23 2010 -0500
+++ b/.zshrc	Tue Nov 23 10:01:30 2010 -0500
@@ -56,3 +56,6 @@
 test -n "${BCVI_CONF}"  && alias vi="bcvi"
 test -n "${BCVI_CONF}"  && alias suvi="EDITOR='bcvi -c viwait' sudoedit"
 test -n "${BCVI_CONF}"  && alias bcp="bcvi -c scpd"
+
+# Local Settings -------------------------------------------------------------
+if [[ -s $HOME/.zshrc_local ]] ; then source $HOME/.zshrc_local ; fi