Updated gvim alias to use nvim

This commit is contained in:
Eric Renfro 2022-08-17 21:46:09 -04:00
parent fccd5a9bf4
commit 860137726e
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