mirror of
https://github.com/artizirk/dotfiles.git
synced 2024-11-01 00:30:58 +02:00
9 lines
116 B
Bash
Executable File
9 lines
116 B
Bash
Executable File
#!/bin/sh
|
|
|
|
NVIM=$(which nvim)
|
|
if [ -n "${NVIM} ] && [ -x "${NVIM} ]; then
|
|
exec ${NVIM} "$@"
|
|
else
|
|
exec vim "$@"
|
|
fi
|