You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

47 lines
997 B
Plaintext

# Terminal
export TERM="screen-256color"
# shell
export SHELL=/usr/local/bin/zsh
# brew CASK
export HOMEBREW_CASK_OPTS="--appdir=/Applications"
# paths
export PATH=$HOME/.rbenv/shims:$PATH
export PATH=/usr/local/bin:/usr/local/sbin:$PATH
export PATH=$HOME/.tmuxifier/bin:$PATH
fpath=($HOME/dotfiles/zsh/zsh-completions/src $fpath)
export MANPATH=/usr/local/share/man:$MANPATH
# disable stupid ._ and dsstore files
export COPY_EXTENDED_ATTRIBUTES_DISABLE=true
export COPYFILE_DISABLE=true
# editor
export EDITOR="/Applications/MacVim.app/Contents/MacOS/Vim"
export VISUAL="/Applications/MacVim.app/Contents/MacOS/Vim"
# node.js
export NODE_PATH=/usr/local/lib/jsctags/:$NODE_PATH
# disable auto titling fixes tmux window
export DISABLE_AUTO_TITLE=true
# tmuxifier
export TMUXIFIER_LAYOUT_PATH="$HOME/dotfiles/tmux"
# grep
export GREP_OPTIONS='--color=auto'
export GREP_COLOR='1;32'
## pager
export PAGER="less"
export LESS="-R"
export LC_CTYPE=$LANG
export RBENV_VERSION="2.0.0-p247"