dotfiles/fish/.config/fish/functions/mutt.fish

8 lines
118 B
Fish

function mutt
if type -q neomutt >/dev/null
neomutt $argv
else
command mutt $argv
end
end