Browse Source

Add vim to neovim alias

master
Arti Zirk 5 years ago
parent
commit
6eeb4da26e
  1. 8
      .bin/vim

8
.bin/vim

@ -0,0 +1,8 @@ @@ -0,0 +1,8 @@
#!/bin/sh
NVIM=$(which nvim)
if [ -n "${NVIM} ] && [ -x "${NVIM} ]; then
exec ${NVIM} "$@"
else
exec vim "$@"
fi
Loading…
Cancel
Save