From 088e2b3f14f0ea02038e20dccbb62e05d4eec9b2 Mon Sep 17 00:00:00 2001 From: Craig Jennings Date: Sat, 30 Aug 2025 12:13:52 -0500 Subject: email, ai, and miscellaneous refactor setup-email script - Enable "set -euo pipefail" for safer execution - Quote all variable references in test conditions - Update script header with usage notes and email setup steps email and org-msg changes - Configure org-msg with inline CSS, greeting, images, citations, and signature - Enable org-msg-mode in all mu4e compose buffers - Advise mu4e-compose-reply and mu4e-compose-wide-reply to use org-msg-edit-mode - Move no-auto-fill hook into mu4e-compose-mode-hook - Disable mu4e-compose-format-flowed and set mu4e-html2text-command - Update gnus-blocked-images comment and remove default signature-file setting - remove org-contact configurations ai changes - historian directive added - added all new directives to menu - changed default directive to default-directive! misc changes - org complains when tab-widths aren't at 8 - refactor and improve delete blank lines region or buffer - change name of add-header function to be more specific - updated tasks - updated abbrevs - documentation for local-arch-wiki-search --- modules/org-contacts-config.el | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100644 modules/org-contacts-config.el (limited to 'modules/org-contacts-config.el') diff --git a/modules/org-contacts-config.el b/modules/org-contacts-config.el deleted file mode 100644 index f6f14c806..000000000 --- a/modules/org-contacts-config.el +++ /dev/null @@ -1,27 +0,0 @@ -;;; org-contacts-config.el --- Org Contacts Customizations -*- lexical-binding: t; -*- -;; author: Craig Jennings -;;; Commentary: -;; Configuration for Org Contacts. - -;;; Code: - -(use-package org-contacts - :after (org mu4e) - :defer .5 - :bind ("C-z C" . org-contacts) ; starts contacts search - :config - (setq org-contacts-files (cons contacts-file '())) - - (add-to-list 'org-capture-templates - '("c" "Contact" entry (file+headline contacts-file "Contacts") - "*%?\n:PROPERTIES:\n:ADDRESS: \n:PHONE: \n:EMAIL: \n:BIRTHDAY: \n:NOTES: \n:END:" :prepend t)) - - (setq mu4e-contacts-file contacts-file) - - (add-to-list 'mu4e-headers-actions - '("add contact" . mu4e-action-add-org-contact)) - (add-to-list 'mu4e-view-actions - '("add contact" . mu4e-action-add-org-contact))) - -(provide 'org-contacts-config) -;;; org-contacts-config.el ends here. -- cgit v1.2.3