added signature to mu4e

This commit is contained in:
petrucci4prez 2018-09-16 15:17:00 -04:00
parent 0cf4ae1f32
commit 7c8b773720
1 changed files with 15 additions and 0 deletions

View File

@ -1954,6 +1954,21 @@ I have current have three contexts, personal and two work accounts. The first is
;; for composing rich-text emails using org mode ;; for composing rich-text emails using org mode
org-mu4e-convert-to-html t)) org-mu4e-convert-to-html t))
#+END_SRC #+END_SRC
*** signature
Signatures take lots of space and make short messages look needlessly clunky, so keep off by default.
#+BEGIN_SRC emacs-lisp
(setq mu4e-compose-signature-auto-include nil
mu4e-compose-signature
(mapconcat
'identity
'("Nate Dwarshuis"
""
"PhD Student - Biomedical Engineering - Krish Roy Lab"
"Georgia Institute of Technology and Emory University"
"ndwarshuis3@gatech.edu")
"\n"))
#+END_SRC
** auctex ** auctex
#+BEGIN_SRC emacs-lisp #+BEGIN_SRC emacs-lisp
(load "auctex.el" nil t t) (load "auctex.el" nil t t)