dotfiles/bin/nv

8 lines
84 B
Bash
Executable File

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