I see, currently this feature is not supported, because it is designed to be compatible with other plugins. However, if you simply want to highlight all the pre elements you can add the following code:
jQuery(function($){$('pre').syntax({brush: 'c', replace: true});});
This will highlight all pre elements using the C language brush.
Let me know if this helps, and if you have any more questions.