8 lines
150 B
Bash
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
|