1 line
2 KiB
Plaintext
1 line
2 KiB
Plaintext
<!-- SC_OFF --><div class="md"><p>hi all,</p> <p>new to orgmode. can someone help me amend the following sample config? </p> <p>C-c c t adds a todo item under a title "Tasks" like this:</p> <p>*Tasks<br/> ** TODO todo item</p> <p>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.</p> <p>any help would be greatly appreciated. thanks. </p> <p><code>;; set key for agenda</code><br/> <code>(global-set-key (kbd "C-c a") 'org-agenda)</code></p> <p><code>;;file to save todo items</code><br/> <code>(setq org-agenda-files (quote ("/Users/bjm/todo.org")))</code></p> <p><code>;;set priority range from A to C with default A</code><br/> <code>(setq org-highest-priority ?A)</code><br/> <code>(setq org-lowest-priority ?C)</code><br/> <code>(setq org-default-priority ?A)</code></p> <p><code>;;set colours for priorities</code><br/> <code>(setq org-priority-faces '((?A . (:foreground "#F0DFAF" :weight bold))</code><br/> <code>(?B . (:foreground "LightSteelBlue"))</code><br/> <code>(?C . (:foreground "OliveDrab"))))</code></p> <p><code>;;open agenda in current window</code><br/> <code>(setq org-agenda-window-setup (quote current-window))</code></p> <p><code>;;capture todo items using C-c c t</code><br/> <code>(define-key global-map (kbd "C-c c") 'org-capture)</code><br/> <code>(setq org-capture-templates</code><br/> <code>'(("t" "todo" entry (file+headline "/Users/bjm/todo.org" "Tasks")</code><br/> <code>"* TODO [#A] %?")))</code></p> </div><!-- SC_ON -->   submitted by   <a href="https://www.reddit.com/user/joshimio"> /u/joshimio </a> <br/> <span><a href="https://www.reddit.com/r/orgmode/comments/q03g9h/todo_template/">[link]</a></span>   <span><a href="https://www.reddit.com/r/orgmode/comments/q03g9h/todo_template/">[comments]</a></span> |