Skip to content

Instantly share code, notes, and snippets.

View arowla's full-sized avatar

Alison Rowland arowla

  • Stitch Fix
  • Chicagoland, USA
View GitHub Profile
SELECT table_schema, table_name FROM information_schema.columns WHERE column_name LIKE '%name%';
@arowla
arowla / .vimrc
Created March 3, 2010 23:27
My .vimrc file
set ai
set backspace=2 " (bs) allow backspacing over everything in insert mode
set expandtab
set foldmethod=indent
set hidden
set history=50 " (hi) keep 50 lines of command line history
set ignorecase
set incsearch
set laststatus=2
set list listchars=tab:>-,trail:.,extends:>,precedes:<