1 ;;; bandali-ebdb.el --- bandali's EBDB configuration -*- lexical-binding: t; -*-
3 ;; Copyright (C) 2018-2020 Amin Bandali
5 ;; Author: Amin Bandali <bandali@gnu.org>
8 ;; This program is free software; you can redistribute it and/or modify
9 ;; it under the terms of the GNU General Public License as published by
10 ;; the Free Software Foundation, either version 3 of the License, or
11 ;; (at your option) any later version.
13 ;; This program is distributed in the hope that it will be useful,
14 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
15 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 ;; GNU General Public License for more details.
18 ;; You should have received a copy of the GNU General Public License
19 ;; along with this program. If not, see <https://www.gnu.org/licenses/>.
27 (with-eval-after-load 'gnus
29 (csetq ebdb-sources
(b/var
"ebdb"))
30 (with-eval-after-load 'swiper
31 (add-to-list 'swiper-font-lock-exclude
#'ebdb-mode t
))
33 (define-key gnus-group-mode-map
(kbd "e") #'ebdb
))
35 (with-eval-after-load 'ebdb
36 (with-eval-after-load 'ebdb-complete
37 ;; (csetq ebdb-complete-mail 'capf)
38 (ebdb-complete-enable))
40 (require 'ebdb-message
)
43 (csetq ebdb-gnus-window-size
0.3)
46 (csetq ebdb-mua-pop-up t
))
48 ;; (with-eval-after-load 'company-ebdb
49 ;; (defun company-ebdb--post-complete (_) nil))
51 (provide 'bandali-ebdb
)
52 ;;; bandali-ebdb.el ends here