\documentclass[12pt,a4paper,openright]{mwrep}
\usepackage[top=2cm,bottom=2cm,left=3cm,right=2cm,twoside]{geometry}
\usepackage[section]{minted}
\usepackage{lipsum}
\begin{document}
\tableofcontents
\listoffigures
\listoflistings
\chapter{c1}
\lipsum
\begin{figure}
.
\label{f1}
\caption{figure}
\end{figure}
\lipsum
\begin{listing}
.
\label{l1}
\caption{listing}
\end{listing}
\chapter{c2}
\lipsum
\end{document}
In this MWE I want to start each chapter at even page. I want to make an exception for \listoffigures and \listoflistings. How can I do that?
