Capture Templates

Modified todo template
switched the order
This commit is contained in:
LinlyBoi
2025-04-27 14:07:45 +03:00
parent 5ed6d6d7a2
commit ab2223952a
2 changed files with 46 additions and 21 deletions

View File

@@ -274,23 +274,23 @@
:EMAIL: %^{Email}
:NOTE: %^{NOTE}
:END:"
:empty-lines 1))
:empty-lines 1) t)
(add-to-list 'org-capture-templates
'("w" "Work" entry
(file+headline "~/org/work.org" "Inbox")
"* TODO [#A] %?\n %i" :empty-lines 1))
"* TODO [#A] %?\n %i" :empty-lines 1) t)
(add-to-list 'org-capture-templates
'("i" "Content idea" entry
(file+headline "~/org/work.org" "Ideas")
"* TODO %? :idea:\n %i" :empty-lines 1))
"* TODO %? :idea:\n %i" :empty-lines 1) t)
(add-to-list 'org-capture-templates
'("l" "Someday" entry
(file+headline "~/org/someday.org" "Inbox")
"* TODO %? \n %i " :empty-lines 1))
"* TODO %? \n %i " :empty-lines 1) t)
(add-to-list 'org-capture-templates
'("s" "Studies" entry
(file+headline "~/org/studies.org" "Inbox")
"* TODO [#C] %?\n %i" :empty-lines 1))
"* TODO [#C] %?\n %i" :empty-lines 1) t)
(add-to-list 'org-capture-templates
'("S" "Lecture" entry
(file+headline "~/org/studies.org" "Schedule")
@@ -300,7 +300,7 @@
:LOCATION: %^{Location}
:END:
%^{Time}T"
:empty-lines 1))
:empty-lines 1) t)
;; add this for reminder stuff
;; :PROPERTIES:\n\n:WILD_NOTIFY_BEFORE: %^{Reminders}\n:END:\n
(add-to-list 'org-capture-templates
@@ -313,7 +313,7 @@
:LOCATION: %^{Location}
:END:
%^{Time}T"
:empty-lines 1))
:empty-lines 1) t)
(add-to-list 'org-capture-templates
'("H" "Home Event" entry
(file+headline "~/org/home.org" "Schedule")
@@ -323,15 +323,15 @@
:LOCATION: %^{Location}
:END:
%^{Time}T"
:empty-lines 1))
:empty-lines 1) t)
(add-to-list 'org-capture-templates
'("h" "Home" entry
(file+headline "~/org/home.org" "Inbox")
"* TODO [#A] %?\n %i" :empty-lines 1))
"* TODO [#A] %?\n %i" :empty-lines 1) t)
(add-to-list 'org-capture-templates
'("b" "Quote" plain
(file "~/org/quotes.org")
"%i" :empty-lines 0))
"%i" :empty-lines 0) t)
(setq-default org-archive-location "~/org/.archive/%s_archive::* Finished Tasks")
;; Import ox-latex to get org-latex-classes and other funcitonality