Mercurial > dotfiles.old
annotate zsh/exports.zsh @ 232:a7ecdf3e66bc
Fix vimrc
author | zegervdv <zegervdv@me.com> |
---|---|
date | Fri, 23 Jan 2015 22:15:31 +0100 |
parents | d216f4d5508e |
children |
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" | |
164 | 3 export NODE_PATH="/usr/local/lib/node_modules" |
151 | 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' |
184 | 30 |
31 # Color Man Pages | |
32 export LESS_TERMCAP_mb=$(printf "\e[1;31m") | |
33 export LESS_TERMCAP_md=$(printf "\e[1;31m") | |
34 export LESS_TERMCAP_me=$(printf "\e[0m") | |
35 export LESS_TERMCAP_se=$(printf "\e[0m") | |
36 export LESS_TERMCAP_so=$(printf "\e[1;44;33m") | |
37 export LESS_TERMCAP_ue=$(printf "\e[0m") | |
38 export LESS_TERMCAP_us=$(printf "\e[1;32m") | |
39 | |
213 | 40 export LANGUAGE=$LANG |
216
d216f4d5508e
Setup latex compiler for dispatch
zegervdv <zegervdv@me.com>
parents:
213
diff
changeset
|
41 export LC_CTYPE=$LANG |
d216f4d5508e
Setup latex compiler for dispatch
zegervdv <zegervdv@me.com>
parents:
213
diff
changeset
|
42 export LC_ALL=$LANG |
213 | 43 |