From 9865f1c9700bbdab8daf3e12c378799d1a8cad54 Mon Sep 17 00:00:00 2001 From: Daniel Borchmann Date: Sun, 9 Nov 2025 11:51:39 +0100 Subject: [PATCH] Allow for wider mail text MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 72 characters is too limiting, but keep hard lines breaks (for now – maybe using visuall-fill-column-mode could be interesting for writing mails?). --- init.el | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/init.el b/init.el index b738e98..06d8fc6 100644 --- a/init.el +++ b/init.el @@ -1858,7 +1858,10 @@ Note that this workaround is incomplete, as explained in this comment." (use-package nntp) (use-package nnml) -(use-package message) + +(use-package message + :init (setopt message-fill-column 100)) + (use-package gnus-msg) (use-package gnus-async)