diff options
author | Franck Cuny <franck@fcuny.net> | 2024-11-08 08:41:23 -0800 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2024-11-08 08:41:23 -0800 |
commit | 605b88528a03b5d274074200bf80f719d377feb0 (patch) | |
tree | 5752b5b17c2fd0f93a59172bd73bb00e4a9250ba /config | |
parent | ignore dape breakpoints (diff) | |
download | emacs.d-605b88528a03b5d274074200bf80f719d377feb0.tar.gz |
nicer bullet point for org-mode
Diffstat (limited to '')
-rw-r--r-- | config/init-notes.el | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/config/init-notes.el b/config/init-notes.el index eabee00..b49fdcf 100644 --- a/config/init-notes.el +++ b/config/init-notes.el @@ -62,6 +62,11 @@ (string= todo-state "PROJECT") (my/org-entry-get-immediate "CATEGORY")))) + :config + (font-lock-add-keywords 'org-mode + '(("^ *\\(-\\) " + (0 (ignore (compose-region (match-beginning 1) (match-end 1) "•")))))) + :custom (org-directory "~/Documents/notes") (org-default-notes-file (expand-file-name "tasks.org" org-directory)) |