10 lines
172 B
Bash
10 lines
172 B
Bash
|
|
# Colors in grep
|
||
|
|
export GREP_OPTIONS='--color=auto'
|
||
|
|
export GREP_COLOR='3;33'
|
||
|
|
|
||
|
|
# venv
|
||
|
|
export VENVS_DIR=$HOME/.virtualenvs
|
||
|
|
|
||
|
|
# Vim is Life, Vim is Happiness
|
||
|
|
export EDITOR=vim
|