mirror of https://github.com/bjeanes/dotfiles.git
21 lines
476 B
Bash
21 lines
476 B
Bash
which vim &>/dev/null && export EDITOR="$(which vim) -f"
|
|
which mvim &>/dev/null && export EDITOR="$(which mvim) -f"
|
|
|
|
export VISUAL="$EDITOR"
|
|
export GEM_OPEN_EDITOR="$EDITOR"
|
|
export GIT_EDITOR="$EDITOR"
|
|
|
|
export IRBRC="$HOME/.irbrc"
|
|
export RBXOPT="-Xrbc.db=/tmp/rbx"
|
|
|
|
export TERM=xterm-256color
|
|
export GREP_OPTIONS='--color=auto'
|
|
export GREP_COLOR='1;32'
|
|
export CLICOLOR=1
|
|
|
|
export HISTSIZE=1000000
|
|
|
|
export REPORTTIME=2
|
|
export TIMEFMT="%*Es total, %U user, %S system, %P cpu"
|
|
|