Mercurial > dotfiles
annotate bashrc/bashrc @ 296:875857ed8004
Update subrepos.
author | Ludovic Chabant <ludovic@chabant.com> |
---|---|
date | Mon, 20 Apr 2015 09:36:49 -0700 |
parents | d11986f53ebc |
children | 4963dd2dcefc |
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. |
248
142625660e60
No need for some PATH stuff I think.
Ludovic Chabant <ludovic@chabant.com>
parents:
110
diff
changeset
|
9 PATH=/usr/local/sbin:/usr/local/bin:$PATH |
81 | 10 |
104 | 11 # Python from Homebrew |
248
142625660e60
No need for some PATH stuff I think.
Ludovic Chabant <ludovic@chabant.com>
parents:
110
diff
changeset
|
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 |
248
142625660e60
No need for some PATH stuff I think.
Ludovic Chabant <ludovic@chabant.com>
parents:
110
diff
changeset
|
15 #PATH=/usr/local/Cellar/ruby/1.9.3-p194/bin:$PATH |
110
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 | |
268 | 33 # OS for some of my scripts. |
81 | 34 export OS=MacOSX |
35 | |
268 | 36 # Pretty colors. |
37 export TERM=xterm-256color | |
38 |