summary refs log tree commit diff stats
path: root/init.el
diff options
context:
space:
mode:
authorCase Duckworth2022-04-19 22:24:44 -0500
committerCase Duckworth2022-04-19 22:25:04 -0500
commit1e11dad4a1e2191b82eb4e3a794ebc80104795cb (patch)
tree984e5eb9dcf9edf9ee3336884a20c0fc67cbe55b /init.el
parentAdd Info history commands to pulse commands (diff)
downloademacs-1e11dad4a1e2191b82eb4e3a794ebc80104795cb.tar.gz
emacs-1e11dad4a1e2191b82eb4e3a794ebc80104795cb.zip
Indentation
Diffstat (limited to 'init.el')
-rw-r--r--init.el11
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