aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTimo Wilken2022-11-28 23:37:42 +0100
committerTimo Wilken2022-11-28 23:37:42 +0100
commit2b90db8fb176bc8c63b36b052a2e7f927c27e8e0 (patch)
treee350fd579a165a026d62be3e32a84151f9f83c54
parent9df03c3d88b06ec14e2071900968dec3ebc3cc34 (diff)
Limit eldoc minibuffer to 3 lines
-rw-r--r--emacs-init.el1
1 files changed, 1 insertions, 0 deletions
diff --git a/emacs-init.el b/emacs-init.el
index bf907661..81e3807b 100644
--- a/emacs-init.el
+++ b/emacs-init.el
@@ -32,6 +32,7 @@
(backup-directory-alist (("." . ,(tw/xdg-emacs-subdir 'data "backup"))) "Save all backup files in one place to avoid clutter.")
(scroll-up-aggressively 0.0 "Don't recenter the window if the point moves off the page.")
(scroll-down-aggressively 0.0 "Don't recenter the window if the point moves off the page.")
+ (max-mini-window-height 3 "Let the echo area grow to a maximum of 4 lines, e.g. when using `eldoc-mode'.")
(package-archives nil "Don't fetch packages from the internet; only get them from Guix.")
(recentf-max-saved-items 10000 "Save lots of recently-opened files.")))