diff options
Diffstat (limited to 'emacs/inits/21-functional.el')
| -rw-r--r-- | emacs/inits/21-functional.el | 21 |
1 files changed, 12 insertions, 9 deletions
diff --git a/emacs/inits/21-functional.el b/emacs/inits/21-functional.el index 3bec067..130de21 100644 --- a/emacs/inits/21-functional.el +++ b/emacs/inits/21-functional.el @@ -1,8 +1,12 @@ -;; Time-stamp: <2024-01-23 21h50 CET (1c015732)> +;; Time-stamp: <2024-05-27 20h11 CEST (83a9252e)> ;; ----------------------------------------------------------------------------- ;; Haskell +(use-package consult-hoogle + :ensure t + :defer) + (use-package haskell-mode :ensure t :bind (:map haskell-mode-map @@ -24,17 +28,16 @@ (interactive-haskell-mode) (turn-on-haskell-doc-mode) (turn-on-haskell-decl-scan) - (eglot-ensure) - (haskell-mode-stylish-buffer)))) + (haskell-mode-stylish-buffer) + (eglot-ensure)))) :config (setq haskell-doc-show-global-types t haskell-doc-show-prelude t - haskell-doc-show-user-defined t haskell-doc-show-reserved t + haskell-doc-show-user-defined t haskell-interactive-mode-eval-pretty t - haskell-process-type 'auto - haskell-stylish-on-save t - haskell-process-use-presentation-mode t - haskell-process-suggest-imports t + haskell-process-show-debug-tips nil haskell-process-suggest-hoogle-imports t - haskell-process-show-debug-tips nil)) + haskell-process-suggest-imports t + haskell-process-use-presentation-mode t + haskell-stylish-on-save t)) |
