dotfiles/zsh/func/init_env_vi

15 lines
295 B
Text
Raw Normal View History

#!/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