2018-08-11 16:40:55 -04:00

9 lines
111 B
Fish

function vim
if type -q nvim >/dev/null
nvim $argv
else
command vim $argv
end
end