From c37caace3b4f950af6240774b44b9445253ade8e Mon Sep 17 00:00:00 2001 From: ktetzlaff Date: Mon, 19 Dec 2022 14:13:01 +0100 Subject: [PATCH] Avoid wrapping long lines by using .dir-locals.el to set Emacs fill-column to 99999 --- .dir-locals.el | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 .dir-locals.el diff --git a/.dir-locals.el b/.dir-locals.el new file mode 100644 index 0000000..36ac81f --- /dev/null +++ b/.dir-locals.el @@ -0,0 +1,4 @@ +;;; Directory Local Variables -*- no-byte-compile: t -*- +;;; For more information see (info "(emacs) Directory Variables") + +((texinfo-mode . ((fill-column . 99999))))