bens-dotfiles/fish/.config/fish/functions/vim.fsh

9 lines
111 B
Plaintext
Raw Normal View History

2018-08-08 20:23:00 +00:00
function vim
2018-08-11 05:38:12 +00:00
if type -q nvim >/dev/null
nvim $argv
else
command vim $argv
end
2018-08-08 20:23:00 +00:00
end
2018-08-11 05:38:12 +00:00