diff options
author | Case Duckworth | 2022-01-04 16:45:32 -0600 |
---|---|---|
committer | Case Duckworth | 2022-01-04 16:45:32 -0600 |
commit | 0a238c3172e6641a9bceb22cc828b394cb1eca20 (patch) | |
tree | 957551bce7df6e0fe7bba8e2d4d04577dc64e65c | |
parent | Fix variable loading issues (diff) | |
download | emacs-0a238c3172e6641a9bceb22cc828b394cb1eca20.tar.gz emacs-0a238c3172e6641a9bceb22cc828b394cb1eca20.zip |
Remove * from org-bullets
-rw-r--r-- | init.el | 7 |
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 |