.bashrc

Thu, 07 Aug 2014 16:46:00 -0400

author
Meredith Howard <mhoward@roomag.org>
date
Thu, 07 Aug 2014 16:46:00 -0400
changeset 130
906ce6af31f6
parent 97
dadc95ee5fe6
child 174
d94a247836c8
permissions
-rw-r--r--

Get rid of batch file for smarter shell script that can push out to win32 vim

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

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

export EDITOR=vim
export PERL_CPANM_OPT='-n --prompt --reinstall'

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