Skip to content

Instantly share code, notes, and snippets.

@wfaler
Created December 12, 2013 22:27
Show Gist options
  • Save wfaler/7936670 to your computer and use it in GitHub Desktop.
Save wfaler/7936670 to your computer and use it in GitHub Desktop.
dotemacs.el
(require 'package)
(add-to-list 'package-archives
'("marmalade" .
"http://marmalade-repo.org/packages/"))
(package-initialize)
(load-theme 'solarized-dark t)
(global-set-key (kbd "M-3") '(lambda () (interactive) (insert "#")))
(if window-system
(set-frame-size (selected-frame) 180 55))
(column-number-mode)
(custom-set-variables
'(haskell-mode-hook '(turn-on-haskell-indentation)))
(put 'scroll-left 'disabled nil)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment