From 5aa9d5dc07d597a3567f7c51042d0d19de6ba308 Mon Sep 17 00:00:00 2001 From: tastytea Date: Wed, 18 Nov 2020 18:32:47 +0100 Subject: [PATCH] Emacs: Add ox-asciidoc. --- init.d/text/misc.el | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/init.d/text/misc.el b/init.d/text/misc.el index ee85f88..8866137 100644 --- a/init.d/text/misc.el +++ b/init.d/text/misc.el @@ -1,6 +1,6 @@ ;;; misc.el --- Miscellaneous file formats. -*- lexical-binding: t; -*- -;; Time-stamp: <2020-10-14T21:38:52+0200> +;; Time-stamp: <2020-11-18T18:32:20+0100> ;;; Commentary: @@ -167,6 +167,10 @@ :after org :hook (org-mode . org-bullets-mode)) +(use-package ox-asciidoc + :after org + :hook (org-mode . (lambda () (require 'ox-asciidoc)))) + (use-package sendmail :mode ("/.claws-mail/tmp/tmpmsg\\." . mail-mode) ; claws-mail messages. :hook (mail-mode . (lambda () (set-fill-column 72))))