8 lines
128 B
Bash
Executable file
8 lines
128 B
Bash
Executable file
#!/usr/bin/env zsh
|
|
|
|
if type "/usr/bin/nvim" > /dev/null; then
|
|
command /usr/bin/nvim "$@"
|
|
else
|
|
command /usr/bin/vim "$@"
|
|
fi
|
|
|