diff options
| author | tslil clingman <> | 2024-07-09 20:35:59 +0200 |
|---|---|---|
| committer | tslil clingman <> | 2024-07-09 20:35:59 +0200 |
| commit | 31da2d6faa41043ce5e1ddc9b8f6ac0aacc49708 (patch) | |
| tree | d3de35093acca533a1488e88c6958b6089a13da0 /emacs/inits | |
| parent | 2d366c23976bf8735fd192c0c716f2c4821b718a (diff) | |
[emacs] finally fix haskell echo area spam
Diffstat (limited to 'emacs/inits')
| -rw-r--r-- | emacs/inits/21-functional.el | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/emacs/inits/21-functional.el b/emacs/inits/21-functional.el index 130de21..07f7844 100644 --- a/emacs/inits/21-functional.el +++ b/emacs/inits/21-functional.el @@ -1,4 +1,4 @@ -;; Time-stamp: <2024-05-27 20h11 CEST (83a9252e)> +;; Time-stamp: <2024-07-09 20h34 CEST (2f26f356)> ;; ----------------------------------------------------------------------------- ;; Haskell @@ -7,6 +7,9 @@ :ensure t :defer) +(use-package ormolu + :ensure t) + (use-package haskell-mode :ensure t :bind (:map haskell-mode-map @@ -31,7 +34,8 @@ (haskell-mode-stylish-buffer) (eglot-ensure)))) :config - (setq haskell-doc-show-global-types t + (setq eldoc-echo-area-use-multiline-p nil + haskell-doc-show-global-types t haskell-doc-show-prelude t haskell-doc-show-reserved t haskell-doc-show-user-defined t |
