Skip to content

Instantly share code, notes, and snippets.

@mbrock
Created April 1, 2013 08:21
Show Gist options
  • Save mbrock/5283803 to your computer and use it in GitHub Desktop.
Save mbrock/5283803 to your computer and use it in GitHub Desktop.
.emacs
(require 'package)
(add-to-list 'package-archives
'("marmalade" .
"http://marmalade-repo.org/packages/"))
(package-initialize)
(load-theme 'solarized-light t)
(tool-bar-mode -1)
(scroll-bar-mode -1)
(iswitchb-mode 1)
(setq-default line-spacing 1)
(add-hook 'haskell-mode-hook
(lambda ()
(haskell-indent-mode -1)
(haskell-indentation-mode 1)
(haskell-doc-mode 1)))
(custom-set-variables
;; custom-set-variables was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
'(coffee-tab-width 2)
'(custom-safe-themes (quote ("501caa208affa1145ccbb4b74b6cd66c3091e41c5bb66c677feda9def5eab19c" "d2622a2a2966905a5237b54f35996ca6fda2f79a9253d44793cfe31079e3c92b" default)))
'(indent-tabs-mode nil)
'(ns-command-modifier (quote meta)))
(custom-set-faces
;; custom-set-faces was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
'(default ((t (:inherit nil :stipple nil :inverse-video nil :box nil :strike-through nil :overline nil :underline nil :slant normal :weight normal :height 140 :width normal :foundry "apple" :family "Source Code Pro")))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment