Mercurial > dotfiles
annotate bashrc/bashrc @ 126:bb4697ae7425
Updated subrepos.
author | Ludovic Chabant <ludovic@chabant.com> |
---|---|
date | Tue, 05 Mar 2013 13:27:49 -0800 |
parents | 9e0e1b78d0dd |
children | 142625660e60 |
rev | line source |
---|---|
81 | 1 # ----------------------------------------------- |
2 # PATH | |
3 # ----------------------------------------------- | |
4 | |
5 # Personal binaries. | |
6 PATH=$HOME/bin:$PATH | |
7 | |
110
9e0e1b78d0dd
Updated PATH for Homebrew stuff on Mac.
Ludovic Chabant <ludovic@chabant.com>
parents:
104
diff
changeset
|
8 # Homebrew binaries. |
9e0e1b78d0dd
Updated PATH for Homebrew stuff on Mac.
Ludovic Chabant <ludovic@chabant.com>
parents:
104
diff
changeset
|
9 PATH=/usr/local/bin:$PATH |
81 | 10 |
104 | 11 # Python from Homebrew |
12 PATH=/usr/local/share/python:$PATH | |
81 | 13 |
110
9e0e1b78d0dd
Updated PATH for Homebrew stuff on Mac.
Ludovic Chabant <ludovic@chabant.com>
parents:
104
diff
changeset
|
14 # Ruby from Homebrew |
9e0e1b78d0dd
Updated PATH for Homebrew stuff on Mac.
Ludovic Chabant <ludovic@chabant.com>
parents:
104
diff
changeset
|
15 PATH=/usr/local/Cellar/ruby/1.9.3-p194/bin:$PATH |
9e0e1b78d0dd
Updated PATH for Homebrew stuff on Mac.
Ludovic Chabant <ludovic@chabant.com>
parents:
104
diff
changeset
|
16 |
81 | 17 # Done! |
18 export PATH | |
19 | |
20 | |
21 # ----------------------------------------------- | |
22 # Shell Environment | |
23 # ----------------------------------------------- | |
70 | 24 |
25 # Large history without duplicates. | |
26 export HISTSIZE=10000 | |
27 export HISTFILESIZE=10000 | |
28 export HISTCONTROL=erasedups | |
29 | |
30 # Use VIM by default. | |
31 export EDITOR="vim" | |
32 | |
81 | 33 # OS for some of my scripts |
34 export OS=MacOSX | |
35 |