From 2b90db8fb176bc8c63b36b052a2e7f927c27e8e0 Mon Sep 17 00:00:00 2001 From: Timo Wilken Date: Mon, 28 Nov 2022 23:37:42 +0100 Subject: Limit eldoc minibuffer to 3 lines --- emacs-init.el | 1 + 1 file changed, 1 insertion(+) (limited to 'emacs-init.el') 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."))) -- cgit v1.2.3