I googled every possible combination but I couldn't find a list of syntax files. Is there a list of good ones?

link|improve this question

80% accept rate
feedback

1 Answer

I've never found one all-inclusive "gallery" of pygments styles. For the most part, the builtins are what's actually available.

To see what's available in your environment run the following in a Python shell:

>>> from pygments.styles import get_all_styles
>>> styles = list(get_all_styles())

Other than that, I would try searching the usual-suspect code hosting sites: Github/Gist, Bitbucket, Google Code, etc. I found a few on there such as Twilight, Solarized and Moria.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.