7 lines
73 B
Bash
Executable file
7 lines
73 B
Bash
Executable file
#!/bin/sh
|
|
|
|
if [ -n "`which nvim`" ]; then
|
|
nvim "$@"
|
|
else
|
|
vim "$@"
|
|
fi
|