X-Git-Url: https://git.distorted.org.uk/~mdw/profile/blobdiff_plain/3e0bbf902b9e91e6bbea4774672c8a1ac0835fe0..d38ebd87d4feb3fc692dd3573f9d432b2cdd2126:/dot/gnus.el diff --git a/dot/gnus.el b/dot/gnus.el index 7276865..fbbf626 100644 --- a/dot/gnus.el +++ b/dot/gnus.el @@ -74,6 +74,19 @@ ;; We may have the misfortune to talk to an Exchange server. (setq imap-enable-exchange-bug-workaround t) +;; Clean up properly when closing the summary. +(defadvice gnus-summary-exit (before mdw-kill-debris compile activate) + (gnus-summary-expand-window)) + +;; Configure article display a bit. +(defun mdw-gnus-article-setup () + (setq truncate-lines nil + truncate-partial-width-windows nil + word-wrap t + wrap-prefix (concat (propertize "..." 'face 'mdw-ellipsis-face) + " "))) +(add-hook 'gnus-article-mode-hook #'mdw-gnus-article-setup) + ;;;-------------------------------------------------------------------------- ;;; Local configuration.