Skip to content

Instantly share code, notes, and snippets.

View JDStraughan's full-sized avatar

Jason Straughan JDStraughan

View GitHub Profile
@josegonzalez
josegonzalez / category.rb
Created August 14, 2010 21:41
Category plugin for Jekyll
module Jekyll
class CategoryIndex < Page
def initialize(site, base, dir, category)
@site = site
@base = base
@dir = dir
@name = 'index.html'
self.process(@name)
self.read_yaml(File.join(base, '_layouts'), 'category_index.html')
@JDStraughan
JDStraughan / bash_profile
Last active January 9, 2018 09:45
My bash profile with git branch highlighting in prompt
#
# System-wide .profile for sh(1)
#
# Environment Definitions
EDITOR=/usr/bin/nano
# aliases
alias ll="ls -lha"
alias opwd="echo $OLDPWD"