Mercurial > dotfiles.old
view zsh/exports.zsh @ 243:367fd20ecfbc
Add auto resurrecting tmux plugin
author | zegervdv <zegervdv@me.com> |
---|---|
date | Tue, 17 Feb 2015 20:37:28 +0100 |
parents | d216f4d5508e |
children |
line wrap: on
line source
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_modules" 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='less' export EDITOR='vim' # Color Man Pages export LESS_TERMCAP_mb=$(printf "\e[1;31m") export LESS_TERMCAP_md=$(printf "\e[1;31m") export LESS_TERMCAP_me=$(printf "\e[0m") export LESS_TERMCAP_se=$(printf "\e[0m") export LESS_TERMCAP_so=$(printf "\e[1;44;33m") export LESS_TERMCAP_ue=$(printf "\e[0m") export LESS_TERMCAP_us=$(printf "\e[1;32m") export LANGUAGE=$LANG export LC_CTYPE=$LANG export LC_ALL=$LANG