diff options
-rw-r--r-- | init.el | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/init.el b/init.el index bc1016f..a69081f 100644 --- a/init.el +++ b/init.el | |||
@@ -494,6 +494,9 @@ | |||
494 | notmuch-address-use-company (featurep 'company) | 494 | notmuch-address-use-company (featurep 'company) |
495 | notmuch-search-oldest-first nil | 495 | notmuch-search-oldest-first nil |
496 | notmuch-archive-tags '("-inbox" "-unread")) | 496 | notmuch-archive-tags '("-inbox" "-unread")) |
497 | ;; Reading mail | ||
498 | (:option notmuch-show-indent-content nil) | ||
499 | (add-hook 'notmuch-show-mode-hook #'visual-fill-column-mode) | ||
497 | ;; Composing mail | 500 | ;; Composing mail |
498 | (:option message-kill-buffer-on-exit t | 501 | (:option message-kill-buffer-on-exit t |
499 | message-auto-save-directory "~/var/mail/drafts") | 502 | message-auto-save-directory "~/var/mail/drafts") |
@@ -573,8 +576,7 @@ | |||
573 | org-indent-indentation-per-level 0 | 576 | org-indent-indentation-per-level 0 |
574 | org-indent-mode-turns-on-hiding-stars nil | 577 | org-indent-mode-turns-on-hiding-stars nil |
575 | org-list-demote-modify-bullet '(("-" . "+") | 578 | org-list-demote-modify-bullet '(("-" . "+") |
576 | ("+" . "*") | 579 | ("+" . "-")) |
577 | ("*" . "-")) | ||
578 | org-log-done 'time | 580 | org-log-done 'time |
579 | org-log-into-drawer t | 581 | org-log-into-drawer t |
580 | org-num-skip-commented t | 582 | org-num-skip-commented t |
@@ -642,11 +644,14 @@ | |||
642 | ;; complains about "Invalid face reference: t" in org-mode buffers, because | 644 | ;; complains about "Invalid face reference: t" in org-mode buffers, because |
643 | ;; `compose-region' returns t. | 645 | ;; `compose-region' returns t. |
644 | ("^[ \t]*\\([-]\\) " | 646 | ("^[ \t]*\\([-]\\) " |
645 | (0 (progn (compose-region (match-beginning 1) (match-end 1) "–") 'fixed-pitch))) | 647 | (0 ;; (progn (compose-region (match-beginning 1) (match-end 1) "–") 'fixed-pitch) |
648 | 'fixed-pitch t)) | ||
646 | ("^[ \t]*\\([+]\\) " | 649 | ("^[ \t]*\\([+]\\) " |
647 | (0 (progn (compose-region (match-beginning 1) (match-end 1) "¬") 'fixed-pitch))) | 650 | (0 ;; (progn (compose-region (match-beginning 1) (match-end 1) "¬") 'fixed-pitch) |
651 | 'fixed-pitch t)) | ||
648 | ("^[ \t]+\\([*]\\) " | 652 | ("^[ \t]+\\([*]\\) " |
649 | (0 (progn (compose-region (match-beginning 1) (match-end 1) "→") 'fixed-pitch))) | 653 | (0 ;; (progn (compose-region (match-beginning 1) (match-end 1) "→") 'fixed-pitch) |
654 | 'fixed-pitch t)) | ||
650 | ;; Fancy numbered lists (well, monospaced) | 655 | ;; Fancy numbered lists (well, monospaced) |
651 | ("^[ \t]*\\(\\(?:[0-9]+\\|[A-Za-z]\\)[.)]\\) " 0 'fixed-pitch t))) | 656 | ("^[ \t]*\\(\\(?:[0-9]+\\|[A-Za-z]\\)[.)]\\) " 0 'fixed-pitch t))) |
652 | ;; Make nobreak-space fixed-pitch as well, for better alignment (is this the | 657 | ;; Make nobreak-space fixed-pitch as well, for better alignment (is this the |
@@ -746,6 +751,7 @@ | |||
746 | (:also-load ox-md) | 751 | (:also-load ox-md) |
747 | (:option org-export-coding-system 'utf-8-unix | 752 | (:option org-export-coding-system 'utf-8-unix |
748 | org-export-headline-levels 8 | 753 | org-export-headline-levels 8 |
754 | org-export-with-drawers nil | ||
749 | org-export-with-section-numbers nil | 755 | org-export-with-section-numbers nil |
750 | org-export-with-smart-quotes t | 756 | org-export-with-smart-quotes t |
751 | org-export-with-sub-superscripts t | 757 | org-export-with-sub-superscripts t |