summaryrefslogtreecommitdiff
path: root/packages.el
blob: 1aa0c14daced0a96b4087cf14580126bcd385da2 (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
;;; 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
  '(
    notmuch
    smtpmail-multi
    gnus
    ))

(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
    ))