org-latex-minted-options

org-latex-minted-options is a variable defined in `ox-latex.el'.
Its value is
nil


Documentation:
Association list of options for the latex minted package.

These options are supplied within square brackets in
\begin{minted} environments. Each element of the alist should
be a list containing two strings: the name of the option, and the
value. For example,

(setq org-latex-minted-options
'(("bgcolor" "bg") ("frame" "lines")))

will result in src blocks being exported with

\begin{minted}[bgcolor=bg,frame=lines]{}

as the start of the minted environment. Note that the same
options will be applied to blocks of all languages.

You can customize this variable.