#!/bin/sh export TERM=xterm-256color if [ -n "`which nvim`" ]; then exec -a nvim nvim "$@" else exec -a vim vim "$@" fi