#!/usr/bin/env zsh # Eryn Wells # Prefer nvim and vim, in that order, over standard vi, which is insufferable. if whence -cp nvim >& -; then alias vi=nvim export EDITOR=nvim elif whence -cp vim >& -; then alias vi=vim export EDITOR=vim fi export editor=vi