How can I give Plot formating expressions on a separate line just like ListPlot?
When I use the following code with ListPlot, it produces a plot without any errors:
graphs = {ImageSize -> Full, Frame -> True};
ListPlot[Table[x, {x, 1, 2, .01}], graphs]
However, the same thing doesn't work for Plot:
graphs = {ImageSize -> Full, Frame -> True};
Plot[x, {x, 1, 2}, graphs]
Why? What is the simple notation change that I need to make it work?

graphusingWithas in m_goldberg's answer or usingPlot[x, {x, 1, 2}, #] &@graphs. – kglr Mar 13 '19 at 23:25