about summary refs log tree commit diff
path: root/emacs.d/init-modes.el
diff options
context:
space:
mode:
authorVincent Ambo <vincent@spotify.com>2013-08-03T13·36+0200
committerVincent Ambo <vincent@spotify.com>2013-08-03T13·36+0200
commit006043d82e7938f5f79d11e17e03314e932f8684 (patch)
tree01cc40c735091ffcf91b8a18faa08cf2affb3c02 /emacs.d/init-modes.el
parent580f642d4051aed2d61d1c8db1322507720d087d (diff)
emacs: Added flx (glorious!), removed some unused settings and functions
Diffstat (limited to 'emacs.d/init-modes.el')
-rw-r--r--emacs.d/init-modes.el8
1 files changed, 1 insertions, 7 deletions
diff --git a/emacs.d/init-modes.el b/emacs.d/init-modes.el
index 39dcfd74bc..3e9cff9996 100644
--- a/emacs.d/init-modes.el
+++ b/emacs.d/init-modes.el
@@ -1,4 +1,4 @@
-(mapc 'require '(projectile))
+(mapc 'require '(projectile hi2))
 ;; Initializes modes I use.
 
 (add-hook 'prog-mode-hook 'esk-pretty-lambdas)
@@ -12,12 +12,6 @@
 (add-to-list 'auto-mode-alist '("\\.markdown\\'" . markdown-mode))
 (add-to-list 'auto-mode-alist '("\\.md\\'" . markdown-mode))
 
-;; Configure haskell-mode
-;; Enable semi-automatic indentation and font-locking
-(require 'hi2)
-;;(add-hook 'haskell-mode-hook 'turn-on-hi2)
-;;(add-hook 'haskell-mode-hook 'font-lock-mode)
-
 ;; Add keybindings to move nested blocks with C-, rsp. C-.
 (define-key haskell-mode-map (kbd "C-,") 'haskell-move-nested-left)
 (define-key haskell-mode-map (kbd "C-.") 'haskell-move-nested-right)