From 4e7d1e7aaf0af676560ebb7a797b6ce172cb7a20 Mon Sep 17 00:00:00 2001 From: Chris Cochrun Date: Sat, 28 May 2022 06:07:48 -0500 Subject: [PATCH] tweaks --- README.org | 6 ++++-- init.el | 21 +++++++++++++++++++-- 2 files changed, 23 insertions(+), 4 deletions(-) diff --git a/README.org b/README.org index 8f4c5dbb..407e5f26 100644 --- a/README.org +++ b/README.org @@ -2254,8 +2254,7 @@ Ledger mode (use-package mu4e ;; :load-path "/etc/profiles/per-user/chris/share/emacs/site-lisp/mu4e/" :straight nil - :config - (setq mail-user-agent 'mu4e-user-agent) + :init (setq mu4e-maildir "~/Maildir" user-full-name "Chris Cochrun" mu4e-change-filenames-when-moving t @@ -2265,6 +2264,9 @@ Ledger mode mu4e-completing-read-function #'completing-read mu4e-mu-binary "/etc/profiles/per-user/chris/bin/mu") + :config + (setq mail-user-agent 'mu4e-user-agent) + (setq mu4e-contexts (list (make-mu4e-context diff --git a/init.el b/init.el index 66ddad74..334c5342 100644 --- a/init.el +++ b/init.el @@ -1503,8 +1503,7 @@ targets." (use-package mu4e ;; :load-path "/etc/profiles/per-user/chris/share/emacs/site-lisp/mu4e/" :straight nil - :config - (setq mail-user-agent 'mu4e-user-agent) + :init (setq mu4e-maildir "~/Maildir" user-full-name "Chris Cochrun" mu4e-change-filenames-when-moving t @@ -1514,6 +1513,9 @@ targets." mu4e-completing-read-function #'completing-read mu4e-mu-binary "/etc/profiles/per-user/chris/bin/mu") + :config + (setq mail-user-agent 'mu4e-user-agent) + (setq mu4e-contexts (list (make-mu4e-context @@ -2242,3 +2244,18 @@ interfere with the default `bongo-playlist-buffer'." gcmh-verbose nil)) (setq warning-suppress-types '((comp))) +(custom-set-variables + ;; custom-set-variables was added by Custom. + ;; If you edit it by hand, you could mess it up, so be careful. + ;; Your init file should contain only one such instance. + ;; If there is more than one, they won't work right. + '(pdf-misc-print-program "/usr/bin/lpr") + '(pdf-misc-print-program-args '("-o media=Letter" "-o fitplot")) + '(safe-local-variable-values + '((eval org-odt-styles-file "/home/chris/org/tfcexpenses2020.odt")))) +(custom-set-faces + ;; custom-set-faces was added by Custom. + ;; If you edit it by hand, you could mess it up, so be careful. + ;; Your init file should contain only one such instance. + ;; If there is more than one, they won't work right. + '(org-modern-tag ((t :background "#9aedfe" :foreground "#282a36"))))