From ae972fcd62e3dc10f4938f646dfac9629eda75c7 Mon Sep 17 00:00:00 2001 From: Anthony Perkins Date: Thu, 28 Nov 2019 16:14:47 +0000 Subject: [PATCH] Look for vim on NetBSD --- roles/home-cli/files/shrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/home-cli/files/shrc b/roles/home-cli/files/shrc index f06f813..6788a39 100644 --- a/roles/home-cli/files/shrc +++ b/roles/home-cli/files/shrc @@ -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