From 817ef56eac1244d5ea15328c912edf566d409781 Mon Sep 17 00:00:00 2001 From: Rahul Martim Juliato Date: Wed, 16 Jul 2025 18:52:04 -0300 Subject: [PATCH] feat(eldoc): new defaults to use with eldoc-box --- init.el | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/init.el b/init.el index 258d99a..98061fd 100644 --- a/init.el +++ b/init.el @@ -461,7 +461,12 @@ ;; This package is built-in, so there's no need to fetch it separately. ;; The following line enables Eldoc globally for all buffers. (use-package eldoc - :ensure nil ;; This is built-in, no need to fetch it. + :ensure nil ;; This is built-in, no need to fetch it. + :config + (setq eldoc-idle-delay 0) ;; Automatically fetch doc help + (setq eldoc-echo-area-use-multiline-p nil) ;; We use the "K" floating help instead + ;; set to t if you want docs on the echo area + (setq eldoc-echo-area-display-truncation-message nil) :init (global-eldoc-mode))