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.

37 lines
775 B
Plaintext

11 years ago
# shell
export SHELL=/usr/local/bin/zsh
# brew CASK
export HOMEBREW_CASK_OPTS="--appdir=/Applications"
# paths
export PATH=$HOME/.composer/vendor/bin:$PATH
11 years ago
export PATH=/usr/local/bin:/usr/local/sbin:$PATH
export MANPATH=/usr/local/share/man:$MANPATH
# rbenv
export PATH="$HOME/.rbenv/bin:$PATH"
# zsh-completions
fpath=($HOME/dotfiles/zsh/zsh-completions/src $fpath)
# disable stupid ._ and dsstore files
export COPY_EXTENDED_ATTRIBUTES_DISABLE=true
export COPYFILE_DISABLE=true
# editor
export EDITOR="/usr/local/bin/nvim"
export VISUAL="/usr/local/bin/nvim"
# disable auto titling fixes tmux window
export DISABLE_AUTO_TITLE=true
# grep
export GREP_OPTIONS='--color=auto'
export GREP_COLOR='1;32'
# pager
export PAGER="less"
export LESS="-R"
export LC_CTYPE=$LANG