diff options
author | William Carroll <wpcarro@gmail.com> | 2019-12-23T10·55+0000 |
---|---|---|
committer | William Carroll <wpcarro@gmail.com> | 2020-01-06T15·25+0000 |
commit | ba1034a9c85f395de2073c69ee3c1daec48ded47 (patch) | |
tree | efc21120f2246d52fc050a10950038fa41f262df /configs/shared/.emacs.d | |
parent | 67f060d6f99989ff5402b5bfb03cdae0e9c57426 (diff) |
Begin the Emacs email journey
While this commit isn't much (i.e. notmuch), it represents one brave step forward in the quest for supporting email in Emacs -- something I'm estimating to be somewhere between a 1.5x and 2x workflow booster.
Diffstat (limited to 'configs/shared/.emacs.d')
-rw-r--r-- | configs/shared/.emacs.d/init.el | 1 | ||||
-rw-r--r-- | configs/shared/.emacs.d/wpc/email.el | 11 |
2 files changed, 12 insertions, 0 deletions
diff --git a/configs/shared/.emacs.d/init.el b/configs/shared/.emacs.d/init.el index 9c307fcc221f..3d0030314b6f 100644 --- a/configs/shared/.emacs.d/init.el +++ b/configs/shared/.emacs.d/init.el @@ -23,6 +23,7 @@ (require 'dotfiles) (require 'bookmark) (require 'keyboard) +(require 'email) (require 'wpc-keybindings) (require 'window-manager) diff --git a/configs/shared/.emacs.d/wpc/email.el b/configs/shared/.emacs.d/wpc/email.el new file mode 100644 index 000000000000..6a266a717cd2 --- /dev/null +++ b/configs/shared/.emacs.d/wpc/email.el @@ -0,0 +1,11 @@ +;;; email.el --- My Emacs email settings -*- lexical-binding: t -*- +;; Author: William Carroll <wpcarro@gmail.com> + +;;; Commentary: +;; Attempting to configure to `notmuch' for my personal use. + +;;; Code: +(message "Not implemented.") + +(provide 'email) +;;; email.el ends here |