From a3fa907f7c0a23a32d64983087820231c68b3e82 Mon Sep 17 00:00:00 2001 From: Preston Pan Date: Mon, 5 Feb 2024 22:22:16 -0800 Subject: edit some mindmaps --- config/doom.org | 40 +++++++++++++++++++++++++--------------- 1 file changed, 25 insertions(+), 15 deletions(-) (limited to 'config') diff --git a/config/doom.org b/config/doom.org index a458d5f..2bb8fb5 100644 --- a/config/doom.org +++ b/config/doom.org @@ -187,26 +187,32 @@ And another to connect to libera: In order to use this configuration, you must install and configure mu and mbsync. #+begin_src emacs-lisp :tangle yes +;; (setq send-mail-function 'smtpmail-send-it) +;; (setq smtpmail-default-smtp-server "mail.nullring.xyz") +;; (setq smtpmail-smtp-server "mail.nullring.xyz") +;; (setq smtpmail-smtp-service 465) +;; (setq smtpmail-stream-type 'starttls) + +(require 'smtpmail) (setq send-mail-function 'smtpmail-send-it) -(setq smtpmail-default-smtp-server "mail.nullring.xyz") (setq smtpmail-smtp-server "mail.nullring.xyz") +(setq smtpmail-default-smtp-server "mail.nullring.xyz") (setq smtpmail-smtp-service 465) +(setq smtpmail-smtp-user "preston@nullring.xyz") (setq smtpmail-stream-type 'ssl) +(setq smtpmail-debug-info t) +(setq smtpmail-auth-credentials '(("mail.nullring.xyz" 465 "preston@nullring.xyz" "lO7Y`\"-siprevious page | home

"))) (setq org-html-postamble "Copyright © 2024 Preston Pan") -(setq org-export-with-section-numbers nil) #+end_src *** Contacts Now we configure org-contacts, which allows me to store contacts in an org mode file: @@ -438,6 +443,11 @@ Our website uses the tufte css styling and we must therefore tell emacs to gener (use-package! ox-tufte) (use-package! plan9-theme) #+end_src +*** This is supposed to work +but it doesn't +#+begin_src emacs-lisp +(setq org-export-with-section-numbers nil) +#+end_src * packages.el Configuration These are some external packages that I use that are not provided by doom modules. -- cgit