You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
6 lines
248 B
6 lines
248 B
6 years ago
|
if [ -n "${BASH_VERSION-}" -o -n "${KSH_VERSION-}" -o -n "${ZSH_VERSION-}" ]; then
|
||
|
[ "`/usr/bin/id -u 2>/dev/null || echo 0`" -le 200 ] && return
|
||
|
# for bash and zsh, only if no alias is already set
|
||
|
alias vi >/dev/null 2>&1 || alias vi=vim
|
||
|
fi
|