prefer helix/vim over neovim

This commit is contained in:
Andrew Coleman 2023-01-13 08:17:11 -05:00
commit b767defdc5

View file

@ -1,7 +1,7 @@
EDITOR=vi
if which nvim > /dev/null 2>&1 ; then
EDITOR=nvim;
elif which vim > /dev/null 2>&1 ; then
if command -v hx > /dev/null ; then
EDITOR=hx
elif command -v vim > /dev/null ; then
EDITOR=vim
fi
export EDITOR