8 lines
201 B
Bash
8 lines
201 B
Bash
export LANG=en_US.UTF-8
|
|
export EDITOR=vi
|
|
export VISUAL=${EDITOR}
|
|
export PAGER=less
|
|
export LESS=RX # R for ANSI color sequences, X to not clear screen on exit
|
|
export TMPDIR=/var/tmp
|
|
export PS1="\w $ "
|