mirror of
https://github.com/lloeki/dotfiles.git
synced 2025-12-06 07:24:39 +01:00
path for gems on ubuntu
This commit is contained in:
parent
28c12215c6
commit
5b61d887b2
1 changed files with 14 additions and 7 deletions
21
profile
21
profile
|
|
@ -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
|
||||
|
||||
# user path
|
||||
export PATH=~/.local/bin:$PATH
|
||||
PATH=~/.local/bin:$PATH
|
||||
|
||||
# local path
|
||||
export PATH=/usr/local/bin:/usr/local/sbin:$PATH
|
||||
PATH=/usr/local/bin:/usr/local/sbin:$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
|
||||
export EDITOR=vim
|
||||
export VISUAL=vim
|
||||
EDITOR=vim
|
||||
VISUAL=vim
|
||||
export EDITOR VISUAL
|
||||
|
||||
# add some color
|
||||
export GREP_OPTIONS='--color=auto'
|
||||
export CLICOLOR=1;
|
||||
GREP_OPTIONS='--color=auto'
|
||||
CLICOLOR=1;
|
||||
export GREP_OPTIONS CLICOLOR
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue