summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortslil clingman <>2024-07-09 20:35:59 +0200
committertslil clingman <>2024-07-09 20:35:59 +0200
commit31da2d6faa41043ce5e1ddc9b8f6ac0aacc49708 (patch)
treed3de35093acca533a1488e88c6958b6089a13da0
parent2d366c23976bf8735fd192c0c716f2c4821b718a (diff)
[emacs] finally fix haskell echo area spam
-rw-r--r--emacs/inits/21-functional.el8
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