8 lines
134 B
Bash
8 lines
134 B
Bash
|
if [ "x$SSH_CLIENT" = "x" ]; then
|
||
|
USE_XTABS=True
|
||
|
fi
|
||
|
|
||
|
if [ -x $(which -p vim) ]; then
|
||
|
export EDITOR=vim
|
||
|
export VISUAL=vim
|
||
|
fi
|