Browse Source

Be a bit smarter with haskell-mode and use-package.

cray
Mitch Tishmack 11 years ago
parent
commit
2c270b8de2
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      emacs/.emacs.d/emacs.org

+ 2
- 1
emacs/.emacs.d/emacs.org View File

@@ -843,6 +843,7 @@ Need to make haskell source be all pretty.
:config :config
(progn (progn
(use-package hindent (use-package hindent
:if (executable-find "hindent")
:ensure t :ensure t
:config :config
(progn (progn
@@ -858,6 +859,7 @@ Need to make haskell source be all pretty.
) )
) )
(use-package ghc (use-package ghc
:if (executable-find "ghc-mod")
:ensure t :ensure t
:config :config
(progn (progn
@@ -874,7 +876,6 @@ Need to make haskell source be all pretty.
(add-hook 'haskell-mode-hook 'turn-on-haskell-simple-indent) (add-hook 'haskell-mode-hook 'turn-on-haskell-simple-indent)
(custom-set-variables (custom-set-variables
'(haskell-program-name "ghci") '(haskell-program-name "ghci")
'(haskell-font-lock-symbols t)
'(haskell-tags-on-save t) '(haskell-tags-on-save t)
) )
(add-to-list 'completion-ignored-extensions ".hi") (add-to-list 'completion-ignored-extensions ".hi")


Loading…
Cancel
Save