public
Description: bash scripts, aliases, other misc things go here
Homepage: http://opensource.thinkrelevance.com
Clone URL: git://github.com/relevance/etc.git
commit  d382b898947b7c572fa9599ca3242c352667a2ef
tree    33fa3ba18578dbc2ddbc12e5381b0b4d1dfd3add
parent  efd43ceb58074bcba1dab0003496a7baa6a63205
etc / bash / exports.sh
100644 18 lines (14 sloc) 0.561 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Set default console Java to 1.6
export JAVA_HOME=/System/Library/Frameworks/JavaVM.framework/Versions/1.6/Home
 
export CLICOLOR=1
export LSCOLORS=gxfxcxdxbxegedabagacad
 
# Enable color in grep
export GREP_OPTIONS='--color=auto'
export GREP_COLOR='3;33'
 
# This resolves issues install the mysql, postgres, and other gems with native non universal binary extensions
# You only want this if you are on Snow Leopard
export ARCHFLAGS='-arch x86_64'
 
# History: don't store duplicates
export HISTCONTROL=erasedups
# History: 10,000 entries
export HISTSIZE=10000