Skip to content

Instantly share code, notes, and snippets.

View allizon's full-sized avatar

Allison Holt allizon

View GitHub Profile
@allizon
allizon / plugins.vimrc
Created February 21, 2018 15:54
My current neovim plugins
call plug#begin('~/.local/share/nvim/plugged')
Plug 'SirVer/ultisnips'
Plug 'honza/vim-snippets'
" Plug 'fatih/vim-go'
Plug 'kien/ctrlp.vim'
Plug 'scrooloose/nerdtree'
Plug 'tpope/vim-bundler'
Plug 'tpope/vim-commentary'
@allizon
allizon / keybase.md
Created September 23, 2017 01:07
keybase.md

Keybase proof

I hereby claim:

  • I am allizon on github.
  • I am allizon (https://keybase.io/allizon) on keybase.
  • I have a public key ASD38HytAgzgSGFa10Ld1O08PLSI4TCo8OjiDlTtZ9YNxwo

To claim this, I am signing this object:

@allizon
allizon / test_helper.rb
Created June 7, 2016 15:32
Stop Zeus from running Minitest tests twice in Rails4
# At the top of test_helper.rb
module Minitest
def self.autorun
# disable this damn thing
end
end
require 'rails/test_help'
@allizon
allizon / RubocopCommand.py
Last active August 29, 2015 14:06
Sublime Text 3 EventListener to run Ruby files through Rubocop on save. Save to your Packages/User directory.
import sublime, sublime_plugin
import os
import subprocess
class RubocopCommand(sublime_plugin.EventListener):
# Replace this with the path to your Rubocop bin (obviously)
RUBOCOP_BIN = '/Users/alholt/.rbenv/shims/rubocop'
def on_post_save_async(self, view):
if view.file_name().endswith('rb'):