dotfiles/shell/exports.sh

25 lines
561 B
Bash

if $(which mate > /dev/null && false); then
EDITOR="mate -wl1"
elif $(which nano > /dev/null && false); then
EDITOR="nano -w"
elif $(which mvim > /dev/null); then
EDITOR="mvim"
elif $(which gvim > /dev/null); then
EDITOR="gvim"
else
EDITOR="vim"
fi
export GEM_OPEN_EDITOR=$EDITOR
export GIT_EDITOR=$EDITOR
export VISUAL=$EDITOR
export IRBRC="$HOME/.irbrc"
export JEWELER_OPTS="--rspec --gemcutter --rubyforge --reek --roodi"
export TERM=xterm-256color
export GREP_OPTIONS='--color=auto' GREP_COLOR='1;32'
export CLICOLOR=1
export HISTSIZE=1000000