Skip to content

Instantly share code, notes, and snippets.

View pivotal-shutl's full-sized avatar

pivotal-shutl

View GitHub Profile
@pivotal-shutl
pivotal-shutl / emacs.el
Created July 29, 2013 17:30
there is probably a better way to do this
(require 'package)
(add-to-list 'package-archives
'("marmalade" . "http://marmalade-repo.org/packages/") t)
(package-initialize)
(when (not package-archive-contents)
(package-refresh-contents))
;; Add in your own as you wish:
(defvar my-packages '(starter-kit
@pivotal-shutl
pivotal-shutl / init.el
Created July 26, 2013 17:12
emacs init.el
(require 'package)
(add-to-list 'package-archives
'("marmalade" . "http://marmalade-repo.org/packages/") t)
(package-initialize)
(when (not package-archive-contents)
(package-refresh-contents))
;; Add in your own as you wish:
(defvar my-packages '(starter-kit starter-kit-lisp starter-kit-bindings ruby-mode)