Mercurial > dotfiles
view bashrc/bashrc @ 240:3a6b11d16a2a
Simpler registration for CtrlP extensions.
author | Ludovic Chabant <ludovic@chabant.com> |
---|---|
date | Fri, 12 Dec 2014 16:53:19 -0800 |
parents | 9e0e1b78d0dd |
children | 142625660e60 |
line wrap: on
line source
# ----------------------------------------------- # PATH # ----------------------------------------------- # Personal binaries. PATH=$HOME/bin:$PATH # Homebrew binaries. PATH=/usr/local/bin:$PATH # Python from Homebrew PATH=/usr/local/share/python:$PATH # Ruby from Homebrew PATH=/usr/local/Cellar/ruby/1.9.3-p194/bin:$PATH # Done! export PATH # ----------------------------------------------- # Shell Environment # ----------------------------------------------- # Large history without duplicates. export HISTSIZE=10000 export HISTFILESIZE=10000 export HISTCONTROL=erasedups # Use VIM by default. export EDITOR="vim" # OS for some of my scripts export OS=MacOSX