This is a pygments lexer for the Ginger Common syntax.
define nfib( n ) =>>
if n <= 1 then
1
else
1 + nfib( n - 1 ) + nfib( n - 2 )
endif
enddefine;
sudo python setup.py install
pip install -e git+git://github.com/Spicery/Ginger-Common-syntax-Pygments-Lexer.git#egg=Ginger-Common-syntax-Pygments-Lexer
pygmentize sample.common