mirror of https://github.com/bjeanes/dotfiles.git
17 lines
369 B
Bash
17 lines
369 B
Bash
which vim &>/dev/null && editor="$(which vim)"
|
|
|
|
export EDITOR="$editor -f"
|
|
export VISUAL="$editor"
|
|
|
|
export TERM=xterm-256color
|
|
export GREP_OPTIONS='--color=auto'
|
|
export GREP_COLOR='1;32'
|
|
export CLICOLOR=1
|
|
|
|
export HISTSIZE=1000000
|
|
export HISTIGNORE="clear:bg:fg:cd:cd -:exit:date:w:* --help"
|
|
|
|
export REPORTTIME=2
|
|
export TIMEFMT="%*Es total, %U user, %S system, %P cpu"
|
|
|