Mercurial > dotfiles
changeset 81:2e0fbe44e9fe
Updated bashrc files.
author | Ludovic Chabant <ludovic@chabant.com> |
---|---|
date | Wed, 14 Mar 2012 11:34:05 -0700 |
parents | 121bef55252f |
children | 6b2c3f14a5c1 |
files | .hgsubstate bashrc/bash_profile bashrc/bashrc install.sh uninstall.sh |
diffstat | 5 files changed, 36 insertions(+), 5 deletions(-) [+] |
line wrap: on
line diff
--- a/.hgsubstate Wed Mar 14 11:33:52 2012 -0700 +++ b/.hgsubstate Wed Mar 14 11:34:05 2012 -0700 @@ -3,12 +3,15 @@ 5db0de524861f4a33d5587723e87a4c20407cf54 vim/bundle/badwolf c51066bd048ca47e9b6d1385703a4d3462ea8c93 vim/bundle/colorschemes 62b72580aba57cb5185bd077ac7a905c1c6893ea vim/bundle/commentary +ac56d68249ed551ea21f1f0cd6d0f0dacce4fe75 vim/bundle/ctrlp +667a668e114e9ec0e5d4cbcb0962d835b23614c4 vim/bundle/easymotion c72a689f7f4deb7e7ad9947143383ada000476ae vim/bundle/fugitive 91190e67720f852c17602504d5225d4e675b6499 vim/bundle/gundo a995d4aabb794bd60028537ecb41ca7f2c738e65 vim/bundle/haml 42c40b8144f833f0d08888eb692b75abb9ee6f48 vim/bundle/lawrencium 2b18a534162bc2c3964cb3a8fe42ca8c100bb571 vim/bundle/markdown 30f6bcc30caf76bc1213f5c3d4001ba5d5fbe7fc vim/bundle/nerdtree +99277d9eed97a59cacc1db8c1dece2bcfd96d877 vim/bundle/powerline bdc8b580b5b583aeb43efb19aac2ab8ce5566dff vim/bundle/ragtag cdffdd43816ddaeee858ae42da3ab6ddcfa25d19 vim/bundle/repeat 528a59f26d12278698bb946f8fb82a63711eec21 vim/bundle/solarized
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/bashrc/bash_profile Wed Mar 14 11:34:05 2012 -0700 @@ -0,0 +1,6 @@ + +# include .bashrc if it exists +if [ -f ~/.bashrc ]; then + . ~/.bashrc +fi +
--- a/bashrc/bashrc Wed Mar 14 11:33:52 2012 -0700 +++ b/bashrc/bashrc Wed Mar 14 11:34:05 2012 -0700 @@ -1,9 +1,26 @@ -# ----------- -# Environment -# ----------- +# ----------------------------------------------- +# PATH +# ----------------------------------------------- + +# Personal binaries. +PATH=$HOME/bin:$PATH + +# Local binaries. +PATH=/opt/local/bin:/opt/local/sbin:$PATH -# Custom PATH. -export PATH="$HOME/bin:$PATH" +# Mac developer binaries +PATH=/Developer/usr/bin:$PATH + +# PATH for Python 2.7 +PATH=/Library/Frameworks/Python.framework/Versions/2.7/bin:$PATH + +# Done! +export PATH + + +# ----------------------------------------------- +# Shell Environment +# ----------------------------------------------- # Large history without duplicates. export HISTSIZE=10000 @@ -13,3 +30,6 @@ # Use VIM by default. export EDITOR="vim" +# OS for some of my scripts +export OS=MacOSX +