9 lines
150 B
Text
9 lines
150 B
Text
|
#!/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
|