Skip to content

Instantly share code, notes, and snippets.

@chumpy
chumpy / .vimrc
Created February 19, 2020 16:02
Vim Config
setlocal expandtab shiftwidth=2 tabstop=2
set number
set nocompatible
syntax enable
filetype plugin on
" FINDING FILES:
" search down into subfolders
@chumpy
chumpy / custom_formatter.rb
Created January 7, 2021 19:37 — forked from mcoms/custom_formatter.rb
When you're having a bad day and just want to skip every failing RSpec test
# frozen_string_literal: true
class CustomFormatter
RSpec::Core::Formatters.register self, :example_failed
def initialize(output)
@output = output
end
def example_failed(notification)