hi all,
new to orgmode. can someone help me amend the following sample config?
C-c c t adds a todo item under a title "Tasks" like this:
*Tasks
** TODO todo item
but i would like to add the todo item without the *Tasks title. also, if possible i would like it to be inserted at the top of the file as the first in the list instead of the bottom.
any help would be greatly appreciated. thanks.
;; set key for agenda
(global-set-key (kbd "C-c a") 'org-agenda)
;;file to save todo items
(setq org-agenda-files (quote ("/Users/bjm/todo.org")))
;;set priority range from A to C with default A
(setq org-highest-priority ?A)
(setq org-lowest-priority ?C)
(setq org-default-priority ?A)
;;set colours for priorities
(setq org-priority-faces '((?A . (:foreground "#F0DFAF" :weight bold))
(?B . (:foreground "LightSteelBlue"))
(?C . (:foreground "OliveDrab"))))
;;open agenda in current window
(setq org-agenda-window-setup (quote current-window))
;;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 "/Users/bjm/todo.org" "Tasks")
"* TODO [#A] %?")))