Skip to content

Instantly share code, notes, and snippets.

@hsjunnesson
Created December 6, 2011 15:56
Show Gist options
  • Save hsjunnesson/1438678 to your computer and use it in GitHub Desktop.
Save hsjunnesson/1438678 to your computer and use it in GitHub Desktop.
~ 0 $ cat ~/.bash_profile
# ~/.bash_profile: executed by bash(1) for login shells.
# see /usr/share/doc/bash/examples/startup-files for examples.
# the files are located in the bash-doc package.
# the default umask is set in /etc/login.defs
#umask 022
# include .bashrc if it exists
if [ -f ~/.bashrc ]; then
. ~/.bashrc
fi
# set PATH so it includes user's private bin if it exists
if [ -d ~/bin ] ; then
PATH=~/bin:"${PATH}"
fi
export EDITOR=vim
export PATH=/usr/local/bin:/usr/local/Cellar/ruby/1.9.2-p0/bin:$PATH
export LANG=en_US.UTF-8
export CLICOLOR=1
export LSCOLORS=ExFxCxDxBxegedabagacad
export LC_CTYPE=en_US.UTF-8
export LC_ALL=en_US.UTF-8
export JAVA_HOME=/System/Library/Frameworks/JavaVM.framework/Versions/CurrentJDK/Home
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment