昨日はSyntaxHighlightを有効にする為、
_config.ymlでsyntax_highlighter_opts: { inline_theme: monokai }を設定してみたが、
Pluginで設定できる事がわかった。

“octopress-codefence”と”octopress-solarized”をGemfileに追加してbundleすると、
必要な機能がインストールされる。

Gemfile
source 'https://rubygems.org'
gem 'octopress', '~> 3.0'
group :jekyll_plugins do
# gem 'octopress-codeblock'
gem 'octopress-codefence'
gem 'octopress-image-tag'
gem 'octopress-quote-tag'
gem 'octopress-solarized'
gem 'octopress-social'
gem 'octopress-ink'
# gem 'octopress-linkblog'
# gem 'octopress-filter-tag'
# gem 'octopress-filters'
# gem 'octopress-comment-tag'
gem 'jekyll-sitemap'
end

後は_plugins/solarized/_config.ymlを作成し、
styleを指定するとSyntaxHighlightが有効になる。

_plugins/solarized/_config.yml
style: light

サンプルコード(Ruby)

ruby/sample.rb
class Hoge
def fuga
puts "テスト"
end
end
hogehoge = Hoge.new
hogehoge.fuga # "テスト"