Mercurial > dotfiles.old
annotate zsh/exports.zsh @ 161:53a5e5db21c5
Remove stupid most and go back to less
author | zegervdv <zegervdv@me.com> |
---|---|
date | Fri, 24 Oct 2014 19:26:16 +0200 |
parents | 87498dbd779a |
children | b18950d832ab |
rev | line source |
---|---|
151 | 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' | |
161
53a5e5db21c5
Remove stupid most and go back to less
zegervdv <zegervdv@me.com>
parents:
151
diff
changeset
|
28 export PAGER='less' |
151 | 29 export EDITOR='vim' |
30 # CTAGS Sorting in VIM/Emacs is better behaved with this in place | |
31 export LC_COLLATE=C |