Skip to content

Instantly share code, notes, and snippets.

View jrnickell's full-sized avatar

John Nickell jrnickell

View GitHub Profile
@jrnickell
jrnickell / Vagrantfile
Last active December 21, 2015 10:09
Shell provisioning for Vagrant
# -*- mode: ruby -*-
# vi: set ft=ruby :
VAGRANTFILE_API_VERSION = "2"
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.box = "precise32"
config.vm.box_url = "http://files.vagrantup.com/precise32.box"
config.vm.provision :shell, :inline => "echo \"America/Chicago\" | sudo tee /etc/timezone && dpkg-reconfigure --frontend noninteractive tzdata"
@jrnickell
jrnickell / .editorconfig
Created July 31, 2013 17:50
Editor config settings
# http://editorconfig.org
root = true
[*]
indent_style = space
indent_size = 4
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true