dotfiles/zsh/func/init_env_vi

14 lines
295 B
Bash

#!/usr/bin/env zsh
# Eryn Wells <eryn@erynwells.me>
# 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