Setting the options in a rule list should work and does in list line plot but not in plot weirdly
opts = {Frame -> True, Axes -> False,
FrameStyle -> Directive[Black, Thick],
FrameLabel -> {"xlabel", "ylabel"}, PlotStyle -> {Red, Thick},
AspectRatio -> 0.8};
ListLinePlot[Table[x, {x, 0, 1, .1}], Sequence[opts]](*works*)
Plot[x, {x, 0, 1}, Sequence[opts]](*does not work*)
Plot[x, {x, 0, 1}, ##] & @@ opts(*works*)
Plot[x, {x, 0, 1}, Evaluate[Sequence[opts]]](*works*)