1
0
mirror of https://github.com/artizirk/dotfiles.git synced 2026-05-12 22:45:03 +03:00
Files
dotfiles/.bin/vim
T
2019-08-12 10:12:10 +03:00

9 lines
116 B
Bash
Executable File

#!/bin/sh
NVIM=$(which nvim)
if [ -n "${NVIM} ] && [ -x "${NVIM} ]; then
exec ${NVIM} "$@"
else
exec vim "$@"
fi