diff 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
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/zsh/exports.zsh	Mon Oct 20 21:49:21 2014 +0200
@@ -0,0 +1,31 @@
+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
+export PATH="/usr/local/bin:$PATH"
+export NODE_PATH="/usr/local/lib/node"
+export PATH="/usr/local/share/npm/bin:$PATH"
+export PATH=$PATH:$HOME/.bin
+# if rbenv is present, configure it for use
+if which rbenv &> /dev/null; then
+    # Put the rbenv entry at the front of the line
+    export PATH="$HOME/.rbenv/bin:$PATH"
+
+    # enable shims and auto-completion
+    eval "$(rbenv init -)"
+fi
+
+# Setup terminal, and turn on colors
+export TERM=xterm-256color
+export CLICOLOR=1
+export LSCOLORS=Gxfxcxdxbxegedabagacad
+
+# Enable color in grep
+export GREP_OPTIONS='--color=auto'
+export GREP_COLOR=32
+
+# This resolves issues install the mysql, postgres, and other gems with native non universal binary extensions
+export ARCHFLAGS='-arch x86_64'
+
+export LESS='--ignore-case --raw-control-chars'
+export PAGER='most'
+export EDITOR='vim'
+# CTAGS Sorting in VIM/Emacs is better behaved with this in place
+export LC_COLLATE=C