diff options
author | Franck Cuny <fcuny@twitter.com> | 2019-12-09 11:18:11 -0800 |
---|---|---|
committer | Franck Cuny <fcuny@twitter.com> | 2019-12-09 11:19:07 -0800 |
commit | c7fa31427916fd145bc350905ddfe62b519f9b24 (patch) | |
tree | 0acf855587f2ff54a5f62c5d4f8c443de1cae084 /emacs | |
parent | [org] Add docstring to a function. (diff) | |
download | emacs.d-c7fa31427916fd145bc350905ddfe62b519f9b24.tar.gz |
[org] Add template for meeting / interviews.
The template for the interview was already existing, so add it back, and add a new template for meetings. By default they all go to inbox, and I will use the function to refile them to the work journal.
Diffstat (limited to '')
-rw-r--r-- | emacs.d/custom/fcuny-org.el | 8 | ||||
-rw-r--r-- | emacs.d/etc/interview.org | 2 |
2 files changed, 9 insertions, 1 deletions
diff --git a/emacs.d/custom/fcuny-org.el b/emacs.d/custom/fcuny-org.el index d8a17f7..4817a9e 100644 --- a/emacs.d/custom/fcuny-org.el +++ b/emacs.d/custom/fcuny-org.el @@ -235,6 +235,14 @@ _g n_: go to notes (file+olp+datetree ,org-default-journal-file) "* %?\n:PROPERTIES:\n:ID: %(shell-command-to-string \"uuidgen\"):CREATED: %U\n:END:\n" :tree-type month) + ("m" "Meeting notes" entry + (file ,org-default-inbox-file) + "* %? %^g:meeting:\n:PROPERTIES:\n:ID: %(shell-command-to-string \"uuidgen\"):CREATED: %U\n:END:\n") + + ("i" "Interview notes" entry + (file ,org-default-inbox-file) + (file ,(concat fcuny/path-emacs-etc "/interview.org"))) + ("J" "Work Journal" entry (file+olp+datetree ,org-default-work-journal-file) "* %?\n:PROPERTIES:\n:ID: %(shell-command-to-string \"uuidgen\"):CREATED: %U\n:END:\n" :tree-type month)))) diff --git a/emacs.d/etc/interview.org b/emacs.d/etc/interview.org index 1d71db3..dfb24b1 100644 --- a/emacs.d/etc/interview.org +++ b/emacs.d/etc/interview.org @@ -1,4 +1,4 @@ -* %U %^{Candidate name} :interview: +* %U %^{Candidate name} :interview: :PROPERTIES: :Created: %U :PairingWith: %^{pairing with} |