Making org mode work better on phone
This commit is contained in:
parent
f562775f5c
commit
1dfaaf62dc
12
README.org
12
README.org
|
@ -1068,10 +1068,10 @@ Part of this config includes some special capture templates for my work as a you
|
||||||
|
|
||||||
(setq org-capture-templates
|
(setq org-capture-templates
|
||||||
'(("t" "Personal todo" entry
|
'(("t" "Personal todo" entry
|
||||||
(file+headline "todo.org" "Inbox")
|
(file+headline "todo/todo.org" "Inbox")
|
||||||
(file ".templates/tasks.org") :prepend t)
|
(file ".templates/tasks.org") :prepend t)
|
||||||
("n" "Personal notes" entry
|
("n" "Personal notes" entry
|
||||||
(file+headline "notes.org" "Inbox")
|
(file+headline "todo/notes.org" "Inbox")
|
||||||
"* %u %?\n%i\n%a" :prepend t)
|
"* %u %?\n%i\n%a" :prepend t)
|
||||||
("j" "Journal" entry
|
("j" "Journal" entry
|
||||||
(file+olp+datetree +org-capture-journal-file)
|
(file+olp+datetree +org-capture-journal-file)
|
||||||
|
@ -1083,7 +1083,7 @@ Part of this config includes some special capture templates for my work as a you
|
||||||
:jump-to-captured t
|
:jump-to-captured t
|
||||||
:empty-lines 1)
|
:empty-lines 1)
|
||||||
("P" "TFC Posts" entry
|
("P" "TFC Posts" entry
|
||||||
(file+headline "/home/chris/org/nvtfc_social_media.org" "Posts")
|
(file+headline "nvtfc_social_media.org" "Posts")
|
||||||
(file ".templates/posts.org")
|
(file ".templates/posts.org")
|
||||||
:prepend t
|
:prepend t
|
||||||
:jump-to-captured t)
|
:jump-to-captured t)
|
||||||
|
@ -1115,13 +1115,13 @@ Part of this config includes some special capture templates for my work as a you
|
||||||
'((sequence "TODO(t)" "PROJ(p)" "STRT(s)" "WAIT(w)" "HOLD(h)" "|" "DONE(d)" "CNCL(c)")
|
'((sequence "TODO(t)" "PROJ(p)" "STRT(s)" "WAIT(w)" "HOLD(h)" "|" "DONE(d)" "CNCL(c)")
|
||||||
(sequence "[ ](T)" "[-](S)" "[?](W)" "|" "[X](D)"))
|
(sequence "[ ](T)" "[-](S)" "[?](W)" "|" "[X](D)"))
|
||||||
org-agenda-files
|
org-agenda-files
|
||||||
'("/home/chris/org/inbox.org"
|
'("/home/chris/org/todo/inbox.org"
|
||||||
"/home/chris/org/notes.org"
|
"/home/chris/org/todo/notes.org"
|
||||||
"/home/chris/org/repetition.org"
|
"/home/chris/org/repetition.org"
|
||||||
"/home/chris/org/tasks.org"
|
"/home/chris/org/tasks.org"
|
||||||
"/home/chris/org/tfc_plans.org"
|
"/home/chris/org/tfc_plans.org"
|
||||||
"/home/chris/org/ministry_team.org"
|
"/home/chris/org/ministry_team.org"
|
||||||
"/home/chris/org/todo.org"
|
"/home/chris/org/todo/todo.org"
|
||||||
"/home/chris/org/newsletter.org"
|
"/home/chris/org/newsletter.org"
|
||||||
"/home/chris/org/nvtfc_social_media.org"
|
"/home/chris/org/nvtfc_social_media.org"
|
||||||
"/home/chris/org/lessons/")
|
"/home/chris/org/lessons/")
|
||||||
|
|
12
init.el
12
init.el
|
@ -671,10 +671,10 @@ vertically."
|
||||||
|
|
||||||
(setq org-capture-templates
|
(setq org-capture-templates
|
||||||
'(("t" "Personal todo" entry
|
'(("t" "Personal todo" entry
|
||||||
(file+headline "todo.org" "Inbox")
|
(file+headline "todo/todo.org" "Inbox")
|
||||||
(file ".templates/tasks.org") :prepend t)
|
(file ".templates/tasks.org") :prepend t)
|
||||||
("n" "Personal notes" entry
|
("n" "Personal notes" entry
|
||||||
(file+headline "notes.org" "Inbox")
|
(file+headline "todo/notes.org" "Inbox")
|
||||||
"* %u %?\n%i\n%a" :prepend t)
|
"* %u %?\n%i\n%a" :prepend t)
|
||||||
("j" "Journal" entry
|
("j" "Journal" entry
|
||||||
(file+olp+datetree +org-capture-journal-file)
|
(file+olp+datetree +org-capture-journal-file)
|
||||||
|
@ -686,7 +686,7 @@ vertically."
|
||||||
:jump-to-captured t
|
:jump-to-captured t
|
||||||
:empty-lines 1)
|
:empty-lines 1)
|
||||||
("P" "TFC Posts" entry
|
("P" "TFC Posts" entry
|
||||||
(file+headline "/home/chris/org/nvtfc_social_media.org" "Posts")
|
(file+headline "nvtfc_social_media.org" "Posts")
|
||||||
(file ".templates/posts.org")
|
(file ".templates/posts.org")
|
||||||
:prepend t
|
:prepend t
|
||||||
:jump-to-captured t)
|
:jump-to-captured t)
|
||||||
|
@ -718,13 +718,13 @@ vertically."
|
||||||
'((sequence "TODO(t)" "PROJ(p)" "STRT(s)" "WAIT(w)" "HOLD(h)" "|" "DONE(d)" "CNCL(c)")
|
'((sequence "TODO(t)" "PROJ(p)" "STRT(s)" "WAIT(w)" "HOLD(h)" "|" "DONE(d)" "CNCL(c)")
|
||||||
(sequence "[ ](T)" "[-](S)" "[?](W)" "|" "[X](D)"))
|
(sequence "[ ](T)" "[-](S)" "[?](W)" "|" "[X](D)"))
|
||||||
org-agenda-files
|
org-agenda-files
|
||||||
'("/home/chris/org/inbox.org"
|
'("/home/chris/org/todo/inbox.org"
|
||||||
"/home/chris/org/notes.org"
|
"/home/chris/org/todo/notes.org"
|
||||||
"/home/chris/org/repetition.org"
|
"/home/chris/org/repetition.org"
|
||||||
"/home/chris/org/tasks.org"
|
"/home/chris/org/tasks.org"
|
||||||
"/home/chris/org/tfc_plans.org"
|
"/home/chris/org/tfc_plans.org"
|
||||||
"/home/chris/org/ministry_team.org"
|
"/home/chris/org/ministry_team.org"
|
||||||
"/home/chris/org/todo.org"
|
"/home/chris/org/todo/todo.org"
|
||||||
"/home/chris/org/newsletter.org"
|
"/home/chris/org/newsletter.org"
|
||||||
"/home/chris/org/nvtfc_social_media.org"
|
"/home/chris/org/nvtfc_social_media.org"
|
||||||
"/home/chris/org/lessons/")
|
"/home/chris/org/lessons/")
|
||||||
|
|
Loading…
Reference in a new issue