Updated gvim alias to use nvim

This commit is contained in:
Eric Renfro 2022-08-17 21:46:09 -04:00
parent 4c44b03e85
commit dbdb1dce15
Signed by: psi-jack
GPG Key ID: 14977F3A50D9A5BF
1 changed files with 2 additions and 0 deletions

View File

@ -2,6 +2,8 @@ case `uname` in
Linux)
if whence -p nvim-gtk > /dev/null; then
alias vim=nvim-gtk
elif whence -p nvim > /dev/null; then
alias vim=nvim
elif whence -p gvim > /dev/null; then
alias vim=gvim
fi