From this site:
eqs = {x == 1 - t^2, y == -2 t - 2};
eq2 = {x, y} /. (And @@ eqs // ToRules)
ParametricPlot[eq2, {t, -5, 5}, MeshStyle -> Red, Mesh -> True, Epilog -> Arrow@Partition[Table[eq2, {t, -5, 5, 0.5}], 2]]
Or, from:
ParametricPlot[eq2, {t, -5, 5}] /. Line[x_] :> Sequence[Arrowheads[Table[.05, {10}]], Arrow@Line[x]]