blob: 6c7c8988d3b5c8c50c99c3aa31d10022d44a07a2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
;;; packages.el --- notmuch layer packages file for Spacemacs.
;;
;; Copyright (c) 2012-2017 Sylvain Benner & Contributors
;;
;; Author: Vasudev Kamath <vasudev@copyninja.info>
;; URL: https://github.com/syl20bnr/spacemacs
;;
;; This file is not part of GNU Emacs.
;;
;;; License: GPLv3
;;; Commentary:
;; See the Spacemacs documentation and FAQs for instructions on how to implement
;; a new layer:
;;
;; SPC h SPC layers RET
;;
;;
;; Briefly, each package to be installed or configured by this layer should be
;; added to `notmuch-packages'. Then, for each package PACKAGE:
;;
;; - If PACKAGE is not referenced by any other Spacemacs layer, define a
;; function `notmuch/init-PACKAGE' to load and initialize the package.
;; - Otherwise, PACKAGE is already referenced by another Spacemacs layer, so
;; define the functions `notmuch/pre-init-PACKAGE' and/or
;; `notmuch/post-init-PACKAGE' to customize the package as it is loaded.
;;; Code:
(defconst notmuch-packages
'(
bbdb
notmuch
smtpmail-multi
gnus
))
(defun notmuch/init-bbdb ()
(use-package bbdb
:defer t)
)
(defun notmuch/init-notmuch ()
(use-package notmuch
:defer t
))
(defun notmuch/init-smtpmail-multi ()
(use-package smtpmail-multi
:defer t
))
(defun notmuch/init-gnus ()
(use-package gnus
:defer t
))
|