Look for vim on NetBSD

This commit is contained in:
Anthony Rose 2019-11-28 16:14:47 +00:00
parent 75843ce910
commit ae972fcd62

View file

@ -106,7 +106,7 @@ if [ ! -d "$HOME/.local/bin" ]; then
fi
# Alias vi to vim if it is installed
if [ -x /usr/bin/vim ] || [ -x /usr/local/bin/vim ]; then
if [ -x /usr/bin/vim ] || [ -x /usr/local/bin/vim ] || [ -x /usr/pkg/bin/vim ]; then
alias vi="vim"
fi