.bashrc

Mon, 06 Feb 2017 09:55:30 -0500

author
Meredith Howard <mhoward@roomag.org>
date
Mon, 06 Feb 2017 09:55:30 -0500
changeset 500
efce0f59ef14
parent 281
cc9fa8161af9
child 515
199b08808ed5
permissions
-rw-r--r--

Fix terminal shortcut when iterm not running yet

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

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

source ~/.bashrc.lib

path-prepend "$HOME/bin"

if path-prepend "$HOME/.plenv/bin"; then
  eval "$(plenv init -)"
fi

if path-prepend "$HOME/.rbenv/bin"; then
  eval "$(rbenv init -)"
fi


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

source ~/.profile.common

mercurial