1
0
mirror of https://github.com/artizirk/dotfiles.git synced 2024-07-01 12:30:12 +03:00
dotfiles/.bin/vim

9 lines
116 B
Plaintext
Raw Normal View History

2019-08-12 10:12:10 +03:00
#!/bin/sh
NVIM=$(which nvim)
if [ -n "${NVIM} ] && [ -x "${NVIM} ]; then
exec ${NVIM} "$@"
else
exec vim "$@"
fi