about summary refs log tree commit diff
path: root/configs
diff options
context:
space:
mode:
authorWilliam Carroll <wpcarro@gmail.com>2019-12-23T10·55+0000
committerWilliam Carroll <wpcarro@gmail.com>2020-01-06T15·25+0000
commitba1034a9c85f395de2073c69ee3c1daec48ded47 (patch)
treeefc21120f2246d52fc050a10950038fa41f262df /configs
parent67f060d6f99989ff5402b5bfb03cdae0e9c57426 (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')
-rw-r--r--configs/shared/.emacs.d/init.el1
-rw-r--r--configs/shared/.emacs.d/wpc/email.el11
2 files changed, 12 insertions, 0 deletions
diff --git a/configs/shared/.emacs.d/init.el b/configs/shared/.emacs.d/init.el
index 9c307fcc22..3d0030314b 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 0000000000..6a266a717c
--- /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