Skip to content

Instantly share code, notes, and snippets.

View bsmth's full-sized avatar

Brian Thomas Smith bsmth

View GitHub Profile
@bsmth
bsmth / homepage_spec.rb
Created November 28, 2019 11:57 — forked from gjtorikian/homepage_spec.rb
Basic Capybara testing with Jekyll + Rack
require 'spec_helper'
describe "Homepage" do
before :each do
visit "/index.html"
end
it "has a title" do
expect(page).to have_css("h1", text: "GitHub Help")
@bsmth
bsmth / .zshrc
Created August 16, 2022 08:30 — forked from zanshin/.zshrc
My .zshrc file (from Mark Nichols -> @zanshin)
# Path to your oh-my-zsh configuration.
export ZSH=$HOME/.oh-my-zsh
# Set name of the theme to load.
# Look in ~/.oh-my-zsh/themes/
# Optionally, if you set this to "random", it'll load a random theme each
# time that oh-my-zsh is loaded.
#export ZSH_THEME="robbyrussell"
export ZSH_THEME="zanshin"