public
Description: Phil Hagelberg's personal dotfiles collection: the product of years of accumulated obsessive minor tweaks. Mostly Emacs Lisp.
Homepage: http://technomancy.us
Clone URL: git://github.com/technomancy/dotfiles.git
dotfiles / .profile
100644 14 lines (11 sloc) 0.446 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
export PATH=$PATH:/sbin:/usr/sbin:~/bin:/bin:/usr/bin:/usr/local/bin:/usr/local/sbin:/var/lib/gems/1.8/bin:/home/phil/.gem/ruby/1.8/bin
export EDITOR="emacsclient"
export JAVA_OPTS="-client"
export SAKE_UNSAFE="why-not"
 
if [ -r $HOME/bin/jdk1.6.0_02 ]; then
    export JAVA_HOME=$HOME/bin/jdk1.6.0_02
    export PATH=$JAVA_HOME/bin:$PATH
fi
 
export JRUBY_HOME=$HOME/bin/jruby-1.1.4
export PATH=$PATH:$JRUBY_HOME/bin
 
export CDPATH=.:~/src:~/work