dotfiles/zsh/func/init_rc_vi

8 lines
150 B
Bash

#!/usr/bin/env zsh
# Eryn Wells <eryn@erynwells.me>
if whence -cp nvim &>-; then
alias vi=nvim
elif whence -cp vim &>-; then
alias vi=vim
fi