How to use minima dark theme on Jekyll + Github pages
This guide assumes that you have already set up your Jekyll pages using Github pages or similar and you want to change your theme.
- Change the 
gem "minima"line in theGemfileas follows so it contains the github repo link 
gem "minima", "~> 2.5", git: "https://github.com/jekyll/minima"
- 
    
bundle install && bundle updateto load whatever there is in the github repo - 
    
Change the build settings in
_config.yml 
In the place where you earlier had
theme: minima
just add this line after theme: minima:
minima:
  skin: dark
You may add other options for minima as well such as header_pages, date_format, disqus, author, social_links and more. Check the readme of the official minima repo.
- Update your page and check the results!
 
bundle exec jekyll serve
then check http://127.0.0.1:4000/ with your browser.
Credit for Slowbro. I found the technique from their blog post and wrote a dumbified-down tutorial here for my own fun.