dotfiles/bin/nv

9 lines
89 B
Bash
Executable File

#!/usr/bin/env bash
if ! command -v nvim &> /dev/null
then
vim "$@"
else
nvim "$@"
fi