path for gems on ubuntu

This commit is contained in:
Loic Nageleisen 2011-06-07 00:38:23 -07:00
parent 28c12215c6
commit 5b61d887b2

21
profile
View file

@ -8,19 +8,26 @@ export LC_ALL="en_US.UTF-8"
#export PKG_CONFIG_PATH=/Library/Frameworks/Mono.framework/Versions/Current/lib/pkgconfig:$PKG_CONFIG_PATH #export PKG_CONFIG_PATH=/Library/Frameworks/Mono.framework/Versions/Current/lib/pkgconfig:$PKG_CONFIG_PATH
# user path # user path
export PATH=~/.local/bin:$PATH PATH=~/.local/bin:$PATH
# local path # local path
export PATH=/usr/local/bin:/usr/local/sbin:$PATH PATH=/usr/local/bin:/usr/local/sbin:$PATH
# node.js path # node.js path
export NODE_PATH=/usr/local/lib/node NODE_PATH=/usr/local/lib/node
export NODE_PATH
# Ruby Gems
test -d /var/lib/gems/1.8/bin && PATH="$PATH:/var/lib/gems/1.8/bin"
export PATH
# default editor # default editor
export EDITOR=vim EDITOR=vim
export VISUAL=vim VISUAL=vim
export EDITOR VISUAL
# add some color # add some color
export GREP_OPTIONS='--color=auto' GREP_OPTIONS='--color=auto'
export CLICOLOR=1; CLICOLOR=1;
export GREP_OPTIONS CLICOLOR