diff options
author | Aryadev Chavali <aryadev@aryadevchavali.com> | 2020-08-09 14:36:49 +0100 |
---|---|---|
committer | Aryadev Chavali <aryadev@aryadevchavali.com> | 2020-08-09 15:40:07 +0100 |
commit | dc69be7dfc41c4d219d3abc5dc3e85d8ab46c288 (patch) | |
tree | 8231e37961ae7ab82e31a4a654fe65becc61a900 /Emacs/.config | |
parent | 4526e2d155592c8052a012207145273104c0ebfe (diff) | |
download | dotfiles-dc69be7dfc41c4d219d3abc5dc3e85d8ab46c288.tar.gz dotfiles-dc69be7dfc41c4d219d3abc5dc3e85d8ab46c288.tar.bz2 dotfiles-dc69be7dfc41c4d219d3abc5dc3e85d8ab46c288.zip |
+org-msg package
org-msg integrates org mode into mail, allowing you to send html
mail.
Diffstat (limited to 'Emacs/.config')
-rw-r--r-- | Emacs/.config/emacs/config.org | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/Emacs/.config/emacs/config.org b/Emacs/.config/emacs/config.org index 2a120e2..508703d 100644 --- a/Emacs/.config/emacs/config.org +++ b/Emacs/.config/emacs/config.org @@ -438,7 +438,18 @@ Counsel projectile provides the ivy interface to projectile commands, which is r (setq send-mail-function #'smtpmail-send-it message-send-mail-function #'smtpmail-send-it)) #+END_SRC - +** Org message +Org message allows for the use of org mode when composing mails, +generating HTML multipart emails. This integrates the WYSIWYG +experience into mail in Emacs while also providing powerful text +features with basically no learning curve (as long as you've already +learnt the basics of org). +#+BEGIN_SRC emacs-lisp +(use-package org-msg + :after '(org message) + :hook ((message-mode-hook . org-msg-mode) + (mail-mode-hook . org-msg-mode))) +#+END_SRC * Dired Setup for dired. Firstly, as it's an inbuilt package don't let straight try and download it. Make dired-hide-details-mode the |