From 092304d9e0ccc37cc0ddaa9b136457e56a1cac20 Mon Sep 17 00:00:00 2001 From: Craig Jennings Date: Sun, 12 Oct 2025 11:47:26 -0500 Subject: changing repositories --- modules/mu4e-org-contacts-setup.el | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 modules/mu4e-org-contacts-setup.el (limited to 'modules/mu4e-org-contacts-setup.el') diff --git a/modules/mu4e-org-contacts-setup.el b/modules/mu4e-org-contacts-setup.el new file mode 100644 index 00000000..9936de95 --- /dev/null +++ b/modules/mu4e-org-contacts-setup.el @@ -0,0 +1,24 @@ +;;; mu4e-org-contacts-setup.el --- Setup mu4e with org-contacts -*- lexical-binding: t; -*- +;; author: Craig Jennings + +;;; Commentary: +;; Simple setup file to enable org-contacts integration with mu4e. +;; Add this to your mail-config.el or load it after both mu4e and org-contacts. + +;;; Code: + +;; Load the integration module +(require 'mu4e-org-contacts-integration) + +;; Activate the integration +(cj/activate-mu4e-org-contacts-integration) + +;; Optional: If you want to use org-contacts as the primary source, +;; you might want to disable mu4e's contact caching to save memory +(with-eval-after-load 'mu4e + ;; Disable mu4e's internal contact collection + (setq mu4e-compose-complete-only-personal nil) + (setq mu4e-compose-complete-only-after nil)) + +(provide 'mu4e-org-contacts-setup) +;;; mu4e-org-contacts-setup.el ends here \ No newline at end of file -- cgit v1.2.3