diff options
-rw-r--r-- | init.el | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/init.el b/init.el index cb96c0c..76f4ab8 100644 --- a/init.el +++ b/init.el | |||
@@ -548,9 +548,8 @@ | |||
548 | :type git :host nil | 548 | :type git :host nil |
549 | :repo "https://git.sr.ht/~bzg/org-contrib")) | 549 | :repo "https://git.sr.ht/~bzg/org-contrib")) |
550 | ;; DO NOT load system-installed org !!! | 550 | ;; DO NOT load system-installed org !!! |
551 | (setq load-path (cl-remove-if (lambda (path) | 551 | (setq load-path |
552 | (string-match-p "lisp/org\\'" path)) | 552 | (cl-remove-if (lambda (path) (string-match-p "lisp/org\\'" path)) load-path)) |
553 | load-path)) | ||
554 | (:also-load +org) | 553 | (:also-load +org) |
555 | (:option org-adapt-indentation nil | 554 | (:option org-adapt-indentation nil |
556 | org-archive-mark-done t | 555 | org-archive-mark-done t |
@@ -646,13 +645,13 @@ | |||
646 | ;; `compose-region' returns t. | 645 | ;; `compose-region' returns t. |
647 | ("^[ \t]*\\([-]\\) " | 646 | ("^[ \t]*\\([-]\\) " |
648 | (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) |
649 | 'fixed-pitch t)) | 648 | 'fixed-pitch t)) |
650 | ("^[ \t]*\\([+]\\) " | 649 | ("^[ \t]*\\([+]\\) " |
651 | (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) |
652 | 'fixed-pitch t)) | 651 | 'fixed-pitch t)) |
653 | ("^[ \t]+\\([*]\\) " | 652 | ("^[ \t]+\\([*]\\) " |
654 | (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) |
655 | 'fixed-pitch t)) | 654 | 'fixed-pitch t)) |
656 | ;; Fancy numbered lists (well, monospaced) | 655 | ;; Fancy numbered lists (well, monospaced) |
657 | ("^[ \t]*\\(\\(?:[0-9]+\\|[A-Za-z]\\)[.)]\\) " 0 'fixed-pitch t))) | 656 | ("^[ \t]*\\(\\(?:[0-9]+\\|[A-Za-z]\\)[.)]\\) " 0 'fixed-pitch t))) |
658 | ;; 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 |