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.
This commit is contained in:
parent
67f060d6f9
commit
ba1034a9c8
2 changed files with 12 additions and 0 deletions
|
@ -23,6 +23,7 @@
|
|||
(require 'dotfiles)
|
||||
(require 'bookmark)
|
||||
(require 'keyboard)
|
||||
(require 'email)
|
||||
|
||||
(require 'wpc-keybindings)
|
||||
(require 'window-manager)
|
||||
|
|
11
configs/shared/.emacs.d/wpc/email.el
Normal file
11
configs/shared/.emacs.d/wpc/email.el
Normal file
|
@ -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
|
Loading…
Reference in a new issue