| @@ -112,5 +112,15 @@ | |||
| (sqlite . t)))) | |||
| ;; | |||
| ;; http://pragmaticemacs.com/emacs/org-mode-basics-vii-a-todo-list-with-schedules-and-deadlines/ | |||
| ;; http://pragmaticemacs.com/emacs/master-your-inbox-with-mu4e-and-org-mode/ | |||
| ;;capture todo items using C-c c t | |||
| (define-key global-map (kbd "C-c c") 'org-capture) | |||
| (setq org-capture-templates | |||
| '(("t" "todo" entry (file+headline "~/Documents/bingen/Org/bingen.org" "Tasks") | |||
| "* TODO [#A] %?\nSCHEDULED: %(org-insert-time-stamp (org-read-date nil t \"+0d\"))\n%a\n"))) | |||
| (provide 'init-org) | |||
| ;;; init-org.el ends here | |||