Skip to content

Commit

Permalink
Switched over to using package.el for third party libraries. May stil…
Browse files Browse the repository at this point in the history
…l need to tweak haskell config.
  • Loading branch information
catphive committed Oct 19, 2011
1 parent 306b174 commit 9dce55f
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions init.el
Expand Up @@ -113,10 +113,13 @@

;; Third party modes.
;; Failure to find third party code should not break emacs config.
(add-to-list 'load-path "~/Dropbox/emacs")

;; elpa
(require 'package)
(setq-default package-user-dir (expand-file-name "~/Dropbox/emacs_packages"))
(add-to-list 'package-archives '("marmalade" . "http://marmalade-repo.org/packages/"))

;; haskell mode.
(load "~/Dropbox/emacs/haskell-mode-2.8.0/haskell-site-file" t)
(when (fboundp 'haskell-mode)
(add-hook 'haskell-mode-hook 'turn-on-haskell-doc-mode)
(add-hook 'haskell-mode-hook 'turn-on-haskell-indentation))
Expand Down

0 comments on commit 9dce55f

Please sign in to comment.