This commit is contained in:
Hedy Li 2021-06-13 12:40:37 +00:00
parent 3404215bee
commit 427fa060bb
1 changed files with 7 additions and 0 deletions

7
bin/nv Executable file
View File

@ -0,0 +1,7 @@
#!/usr/bin/env bash
if ! command -v nvim &> /dev/null
then
vim "$*"
else
nvim "$*"
fi