mirror of
https://tildegit.org/ben/dotfiles.git
synced 2025-08-10 05:02:03 +00:00
9 lines
111 B
Fish
9 lines
111 B
Fish
function vim
|
|
if type -q nvim >/dev/null
|
|
nvim $argv
|
|
else
|
|
command vim $argv
|
|
end
|
|
end
|
|
|