dotfiles/.config/fish/functions/vim.fish

7 lines
107 B
Fish

function vim
if type -q nvim
command nvim $argv
else
command vim $argv
end
end