diff options
-rw-r--r-- | init.el | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/init.el b/init.el index f0dc36a..d1e663a 100644 --- a/init.el +++ b/init.el | |||
@@ -573,8 +573,7 @@ | |||
573 | org-indent-indentation-per-level 0 | 573 | org-indent-indentation-per-level 0 |
574 | org-indent-mode-turns-on-hiding-stars nil | 574 | org-indent-mode-turns-on-hiding-stars nil |
575 | org-list-demote-modify-bullet '(("-" . "+") | 575 | org-list-demote-modify-bullet '(("-" . "+") |
576 | ("+" . "*") | 576 | ("+" . "-")) |
577 | ("*" . "-")) | ||
578 | org-log-done 'time | 577 | org-log-done 'time |
579 | org-log-into-drawer t | 578 | org-log-into-drawer t |
580 | org-num-skip-commented t | 579 | org-num-skip-commented t |
@@ -641,11 +640,14 @@ | |||
641 | ;; complains about "Invalid face reference: t" in org-mode buffers, because | 640 | ;; complains about "Invalid face reference: t" in org-mode buffers, because |
642 | ;; `compose-region' returns t. | 641 | ;; `compose-region' returns t. |
643 | ("^[ \t]*\\([-]\\) " | 642 | ("^[ \t]*\\([-]\\) " |
644 | (0 (progn (compose-region (match-beginning 1) (match-end 1) "–") 'fixed-pitch))) | 643 | (0 ;; (progn (compose-region (match-beginning 1) (match-end 1) "–") 'fixed-pitch) |
644 | 'fixed-pitch t)) | ||
645 | ("^[ \t]*\\([+]\\) " | 645 | ("^[ \t]*\\([+]\\) " |
646 | (0 (progn (compose-region (match-beginning 1) (match-end 1) "¬") 'fixed-pitch))) | 646 | (0 ;; (progn (compose-region (match-beginning 1) (match-end 1) "¬") 'fixed-pitch) |
647 | 'fixed-pitch t)) | ||
647 | ("^[ \t]+\\([*]\\) " | 648 | ("^[ \t]+\\([*]\\) " |
648 | (0 (progn (compose-region (match-beginning 1) (match-end 1) "→") 'fixed-pitch))) | 649 | (0 ;; (progn (compose-region (match-beginning 1) (match-end 1) "→") 'fixed-pitch) |
650 | 'fixed-pitch t)) | ||
649 | ;; Fancy numbered lists (well, monospaced) | 651 | ;; Fancy numbered lists (well, monospaced) |
650 | ("^[ \t]*\\(\\(?:[0-9]+\\|[A-Za-z]\\)[.)]\\) " 0 'fixed-pitch t))) | 652 | ("^[ \t]*\\(\\(?:[0-9]+\\|[A-Za-z]\\)[.)]\\) " 0 'fixed-pitch t))) |
651 | ;; Make nobreak-space fixed-pitch as well, for better alignment (is this the | 653 | ;; Make nobreak-space fixed-pitch as well, for better alignment (is this the |
@@ -745,6 +747,7 @@ | |||
745 | (:also-load ox-md) | 747 | (:also-load ox-md) |
746 | (:option org-export-coding-system 'utf-8-unix | 748 | (:option org-export-coding-system 'utf-8-unix |
747 | org-export-headline-levels 8 | 749 | org-export-headline-levels 8 |
750 | org-export-with-drawers nil | ||
748 | org-export-with-section-numbers nil | 751 | org-export-with-section-numbers nil |
749 | org-export-with-smart-quotes t | 752 | org-export-with-smart-quotes t |
750 | org-export-with-sub-superscripts t | 753 | org-export-with-sub-superscripts t |