summary refs log tree commit diff
path: root/emacs.d/inits/90_lang-haskell.el
diff options
context:
space:
mode:
Diffstat (limited to 'emacs.d/inits/90_lang-haskell.el')
-rw-r--r--emacs.d/inits/90_lang-haskell.el22
1 files changed, 0 insertions, 22 deletions
diff --git a/emacs.d/inits/90_lang-haskell.el b/emacs.d/inits/90_lang-haskell.el
deleted file mode 100644
index be245f3..0000000
--- a/emacs.d/inits/90_lang-haskell.el
+++ /dev/null
@@ -1,22 +0,0 @@
-(use-package haskell-mode
-  :ensure t
-  :init
-  (progn
-    (add-hook 'haskell-mode-hook 'turn-on-haskell-doc-mode)
-    (add-hook 'haskell-mode-hook 'turn-on-haskell-simple-indent)
-    (add-hook 'haskell-mode-hook 'interactive-haskell-mode)
-    )
-  (setq haskell-stylish-on-save t))
-
-(use-package ghc
-  :ensure t
-  :config
-  (add-hook 'haskell-mode-hook 'ghc-init)
-  :bind (("C-c C-t" . ghc-show-type)
-         ("C-c t"   . ghc-show-type)))
-
-(use-package hindent
-  :ensure t
-  :config
-  (add-hook 'haskell-mode-hook #'hindent-mode)
-  (setq hindent-style "gibiansky"))