.bashrc

Tue, 01 Jul 2014 22:19:21 -0400

author
Meredith Howard <mhoward@roomag.org>
date
Tue, 01 Jul 2014 22:19:21 -0400
changeset 95
6c1ea6e90a23
parent 94
51ca19919894
child 97
dadc95ee5fe6
permissions
-rw-r--r--

zsh startup fixes

# .bashrc: executed for non-login shells
#          probably sourced by .bash_profile though

if [ -f ~/.bashrc.dist ]; then
  source ~/.bashrc.dist
fi


if [ -d ~/bin ]; then
  export PATH="$HOME/bin:$PATH"
fi

if [ -d ~/.plenv ]; then
  export PATH="$HOME/.plenv/bin:$PATH"
  eval "$(plenv init -)"
fi

if [ -d ~/.rbenv ]; then
  export PATH="$HOME/.rbenv/bin:$PATH"
  eval "$(rbenv init -)"
fi


if [ -f ~/.bashrc.local ]; then
  source ~/.bashrc.local
fi

mercurial