summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--init.el7
1 files changed, 2 insertions, 5 deletions
diff --git a/init.el b/init.el index 6b48479..af7b6db 100644 --- a/init.el +++ b/init.el
@@ -409,8 +409,7 @@
409 (- fill-column 8))) 409 (- fill-column 8)))
410 org-imenu-depth 3 410 org-imenu-depth 3
411 org-list-demote-modify-bullet '(("-" . "+") 411 org-list-demote-modify-bullet '(("-" . "+")
412 ("+" . "*") 412 ("+" . "-"))
413 ("*" . "-"))
414 org-log-done 'time 413 org-log-done 'time
415 org-log-into-drawer t 414 org-log-into-drawer t
416 org-outline-path-complete-in-steps nil 415 org-outline-path-complete-in-steps nil
@@ -445,9 +444,7 @@
445 '(("^ *\\([-]\\) " 444 '(("^ *\\([-]\\) "
446 (0 (prog1 () (compose-region (match-beginning 1) (match-end 1) "•")))) 445 (0 (prog1 () (compose-region (match-beginning 1) (match-end 1) "•"))))
447 ("^ *\\([+]\\) " 446 ("^ *\\([+]\\) "
448 (0 (prog1 () (compose-region (match-beginning 1) (match-end 1) "◦")))) 447 (0 (prog1 () (compose-region (match-beginning 1) (match-end 1) "◦")))))))
449 ("^ +\\([*]\\) " ; * at the beginning of the line is a header
450 (0 (prog1 () (compose-region (match-beginning 1) (match-end 1) "‣")))))))
451 448
452(setup org-agenda 449(setup org-agenda
453 (:option org-agenda-skip-deadline-if-done t 450 (:option org-agenda-skip-deadline-if-done t