Skip to content

Instantly share code, notes, and snippets.

@dontdieych
Created September 2, 2014 15:19
Show Gist options
  • Save dontdieych/0d1c4fd90ce9620094e0 to your computer and use it in GitHub Desktop.
Save dontdieych/0d1c4fd90ce9620094e0 to your computer and use it in GitHub Desktop.
(setq package-archives '(("gnu" . "http://elpa.gnu.org/packages/")
("marmalade" . "http://marmalade-repo.org/packages/")
("melpa" . "http://melpa.milkbox.net/packages/")))
(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 (:family "Source Code Pro" :foundry "adobe" :slant normal :weight normal :height 143 :width normal)))))
(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.
'(custom-enabled-themes (quote (base16-default)))
'(custom-safe-themes (quote ("41b6698b5f9ab241ad6c30aea8c9f53d539e23ad4e3963abff4b57c0f8bf6730" "1affe85e8ae2667fb571fc8331e1e12840746dae5c46112d5abb0c3a973f5f5a" default)))
'(desktop-save-mode nil)
'(haskell-mode-hook (quote (turn-on-haskell-indentation)))
'(helm-mode t)
'(savehist-mode t)
'(scroll-bar-mode nil))
(add-hook 'after-init-hook
(lambda ()
(load-theme 'base16-default)
(helm-mode t)
))
(add-hook 'flycheck-mode-hook 'flycheck-haskell-setup)
(add-hook 'haskell-mode-hook 'interactive-haskell-mode)
(custom-set-variables
'(haskell-process-suggest-remove-import-lines t)
'(haskell-process-auto-import-loaded-modules t)
'(haskell-process-log t))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment