mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-02-27 03:05:39 +01:00
14 lines
367 B
Bash
Executable file
14 lines
367 B
Bash
Executable file
# Color in grep
|
|
export GREP_OPTIONS='--color=auto'
|
|
export GREP_COLOR='3;33'
|
|
|
|
#useful for gems and mysql
|
|
export ARCHFLAGS='-arch x86_64'
|
|
|
|
# Other useful stuff
|
|
export LESS='--ignore-case --raw-control-chars'
|
|
export PAGER='less'
|
|
export EDITOR='/usr/local/bin/mate -w'
|
|
#export EDITOR='subl -w'
|
|
|
|
export HOMEBREW_CASK_OPTS="--appdir=/Applications --caskroom=/etc/Caskroom"
|