Eldoc
Enable the global minor mode.
Now enabled by default.
Do not clear Eldoc after confirming a candidate.
(with-eval-after-load 'eldoc
(with-eval-after-load 'corfu
(eldoc-add-command #'corfu-insert)))
Update Eldoc on all Paredit commands.
(with-eval-after-load 'eldoc
(with-eval-after-load 'paredit
(dolist (command paredit-commands)
(when (listp command)
(eldoc-add-command (cadr command))))))