#!/bin/sh

if [ ! -e /usr/local/bin/vim ]; then
	echo "Installing vim -> neovim symlink..."
	ln -s /usr/bin/nvim /usr/local/bin/vim
fi
