diff options
-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))) |