.bashrc

Wed, 20 Jan 2016 18:51:55 -0500

author
Meredith Howard <mhoward@roomag.org>
date
Wed, 20 Jan 2016 18:51:55 -0500
changeset 237
eac688905192
parent 174
d94a247836c8
child 270
dda2a7f4d485
permissions
-rw-r--r--

add auto-pairs

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

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

source ~/.profile.common

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