diff options
author | eli <eli@newstartmobile.com> | 2023-01-18 10:04:54 -0500 |
---|---|---|
committer | eli <eli@newstartmobile.com> | 2023-01-18 10:04:54 -0500 |
commit | 786204d7438124f6c5f6950fbd76b0729156d154 (patch) | |
tree | 42b2bb2770d3b25811702d79e9e586e40b79cd38 | |
parent | 566446664e50f76697ebd8bc40479eda3192d693 (diff) | |
download | emacs-786204d7438124f6c5f6950fbd76b0729156d154.tar.gz |
*
-rw-r--r-- | init.el | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/init.el b/init.el index cb71346..f9f6d3a 100644 --- a/init.el +++ b/init.el @@ -215,7 +215,15 @@ '(org-done ((t (:foreground "#5DA7AA" :weight normal :strike-through t)))) '(org-headline-done ((((class color) (min-colors 16) (background light)) - (:foreground "#5E81AC" :strike-through t))))) + (:foreground "#5E81AC" :strike-through t))))) + +(setq org-capture-templates + '(("t" "todo" entry (file+headline "~/Dropbox/Eli/org/todo.org" "Tasks") + "* TODO %?\n %i\n %a") + ("s" "scratch" entry (file+datetree "~/Dropbox/Eli/org/scratch.org") + "* %?\nEntered on %U\n %i\n %a") + ("i" "inbox" entry (file+datetree "~/Dropbox/Eli/org/inbox.org") + "* %?\nEntered on %U\n %i\n %a"))) (straight-use-package 'org-bullets) (add-hook 'org-mode-hook (lambda () (org-bullets-mode 1))) |