comparison zsh/exports.zsh @ 151:87498dbd779a

Move away from oh-my-zsh
author zegervdv <zegervdv@me.com>
date Mon, 20 Oct 2014 21:49:21 +0200
parents
children 53a5e5db21c5
comparison
equal deleted inserted replaced
150:de8d4246c8fe 151:87498dbd779a
1 export PATH=$PATH:/usr/local/opt/ruby/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/opt/X11/bin:/usr/texbin:/usr/local/sbin
2 export PATH="/usr/local/bin:$PATH"
3 export NODE_PATH="/usr/local/lib/node"
4 export PATH="/usr/local/share/npm/bin:$PATH"
5 export PATH=$PATH:$HOME/.bin
6 # if rbenv is present, configure it for use
7 if which rbenv &> /dev/null; then
8 # Put the rbenv entry at the front of the line
9 export PATH="$HOME/.rbenv/bin:$PATH"
10
11 # enable shims and auto-completion
12 eval "$(rbenv init -)"
13 fi
14
15 # Setup terminal, and turn on colors
16 export TERM=xterm-256color
17 export CLICOLOR=1
18 export LSCOLORS=Gxfxcxdxbxegedabagacad
19
20 # Enable color in grep
21 export GREP_OPTIONS='--color=auto'
22 export GREP_COLOR=32
23
24 # This resolves issues install the mysql, postgres, and other gems with native non universal binary extensions
25 export ARCHFLAGS='-arch x86_64'
26
27 export LESS='--ignore-case --raw-control-chars'
28 export PAGER='most'
29 export EDITOR='vim'
30 # CTAGS Sorting in VIM/Emacs is better behaved with this in place
31 export LC_COLLATE=C