diff options
author | Amin Bandali <bandali@gnu.org> | 2019-09-06 12:07:55 -0400 |
---|---|---|
committer | Amin Bandali <bandali@gnu.org> | 2019-09-06 12:07:55 -0400 |
commit | 24a42bb2b24e274bc5dfe36e0503a3274988f98d (patch) | |
tree | ae5388bc6772f10cb5990b4d8a99e74e1bf854c4 | |
parent | d141ce1178b5a4728e31ca382e4323552d650df7 (diff) | |
download | configs-24a42bb2b24e274bc5dfe36e0503a3274988f98d.tar.gz configs-24a42bb2b24e274bc5dfe36e0503a3274988f98d.tar.xz configs-24a42bb2b24e274bc5dfe36e0503a3274988f98d.zip |
emacs: ebdb: use :demand instead of require, disable mua popup
Diffstat (limited to '')
-rw-r--r-- | .emacs.d/init.el | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/.emacs.d/init.el b/.emacs.d/init.el index e499e4b..e88438f 100644 --- a/.emacs.d/init.el +++ b/.emacs.d/init.el @@ -2131,10 +2131,6 @@ This function is intended for use with `ivy-ignore-buffers'." gnus-interactive-exit nil gnus-gcc-mark-as-read t) :config - (require 'ebdb) - (require 'ebdb-mua) - (require 'ebdb-gnus) - (when (version< emacs-version "27") (add-to-list 'nnmail-split-abbrev-alist @@ -2349,6 +2345,7 @@ https://csclub.uwaterloo.ca/~abandali") ("s" . footnote-set-style))) (use-package ebdb + :demand :after gnus :bind (:map gnus-group-mode-map ("e" . ebdb)) :config @@ -2369,14 +2366,15 @@ https://csclub.uwaterloo.ca/~abandali") (defun company-ebdb--post-complete (_) nil)) (use-feature ebdb-gnus + :demand :after ebdb :custom (ebdb-gnus-window-size 0.3)) (use-feature ebdb-mua + :demand :after ebdb - ;; :custom (ebdb-mua-pop-up nil) - ) + :custom (ebdb-mua-pop-up nil)) ;; (use-package ebdb-message ;; :after ebdb) |