Skip to content

Commit

Permalink
zsh: add an optional zshrc_local hook
Browse files Browse the repository at this point in the history
  • Loading branch information
sjl committed Nov 23, 2010
1 parent c2410b5 commit dc81e1d
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .zshrc
Expand Up @@ -56,3 +56,6 @@ test -n "$(which bcvi)" && eval "$(bcvi --unpack-term)"
test -n "${BCVI_CONF}" && alias vi="bcvi" test -n "${BCVI_CONF}" && alias vi="bcvi"
test -n "${BCVI_CONF}" && alias suvi="EDITOR='bcvi -c viwait' sudoedit" test -n "${BCVI_CONF}" && alias suvi="EDITOR='bcvi -c viwait' sudoedit"
test -n "${BCVI_CONF}" && alias bcp="bcvi -c scpd" test -n "${BCVI_CONF}" && alias bcp="bcvi -c scpd"

# Local Settings -------------------------------------------------------------
if [[ -s $HOME/.zshrc_local ]] ; then source $HOME/.zshrc_local ; fi

0 comments on commit dc81e1d

Please sign in to comment.