2022-05-25 17:02:01 -07:00
|
|
|
#!/usr/bin/env zsh
|
|
|
|
# Eryn Wells <eryn@erynwells.me>
|
|
|
|
|
2022-05-26 09:11:57 -07:00
|
|
|
# Prefer nvim and vim, in that order, over standard vi, which is insufferable.
|
|
|
|
|
2022-11-16 15:31:55 +00:00
|
|
|
if whence -cp nvim &> /dev/null; then
|
2022-05-25 17:02:01 -07:00
|
|
|
alias vi=nvim
|
2022-05-28 09:07:40 -07:00
|
|
|
export EDITOR=nvim
|
2022-11-16 15:31:55 +00:00
|
|
|
elif whence -cp vim &> /dev/null; then
|
2022-05-25 17:02:01 -07:00
|
|
|
alias vi=vim
|
2022-05-28 09:07:40 -07:00
|
|
|
export EDITOR=vim
|
2022-05-25 17:02:01 -07:00
|
|
|
fi
|
2022-05-28 09:07:40 -07:00
|
|
|
|
|
|
|
export editor=vi
|