So far, the closest I have come up with is to draw each curve twice, once in the usual way and once using the "triangles" path decoration to approximate an arrow tip, like so:
Code: Select all
\begin{tikzpicture}[decoration=triangles]
\draw (0,0) -- (5,5);
\draw[decorate] (0,0) -- (5,5);
\end{tikzpicture}