From aabfd525cab817a372aba2a2a4e7769276bb6eb2 Mon Sep 17 00:00:00 2001 From: Serghei Iakovlev Date: Mon, 9 Sep 2024 09:26:09 +0200 Subject: [PATCH] Always highlight the current line in gnus groups --- init.el | 3 +++ 1 file changed, 3 insertions(+) diff --git a/init.el b/init.el index f0c3f7c..8919258 100644 --- a/init.el +++ b/init.el @@ -2156,6 +2156,9 @@ This function serves multiple purposes: (add-hook 'gnus-group-mode-hook #'gnus-topic-mode) +;; Always highlight the current line in gnus groups. +(add-hook 'gnus-group-mode-hook (lambda () (hl-line-mode 1))) + ;;;;; MML documents ;; Reuse the encryption keys specified for `epa-file-encrypt-to' when signing. (setq mml-secure-openpgp-signers epa-file-encrypt-to)