diff options
author | Matthew Lemon <y@yulqen.org> | 2023-09-11 14:37:33 +0100 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2023-09-11 14:37:33 +0100 |
commit | 90df4b9d972c56fd46019955505cc8b03db010d6 (patch) | |
tree | dd68ce274fa50edf578642c5ab572f69c882f9a3 | |
parent | 711ebb8bf592b49e534d1ba96125abf728b0a29d (diff) |
New tag shortcut, capture template and snippets
-rw-r--r-- | init.el | 3 | ||||
-rw-r--r-- | snippets/fundamental-mode/*generic meeting (org)* | 14 | ||||
-rw-r--r-- | snippets/fundamental-mode/generic_meeting (org) | 14 |
3 files changed, 31 insertions, 0 deletions
@@ -1392,6 +1392,8 @@ If failed try to complete the common part with `company-complete-common'" "* %?\n%^t--%^t") ("wm" "Work Calendar - Meeting" entry (file+headline "~/Documents/org/mod.org" "Meetings") "* %?\n:PROPERTIES:\n:CATEGORY: Meeting\n:END:\n%^T") + ("wC" "Work Colleague - Block" entry (file+headline "~/Documents/org/mod.org" "Colleagues Calendar") + "* %?\n%^t--%^t") ("e" "Emacs Tip") ("et" "Emacs Tip" entry (file+headline "~/Documents/org/emacs-tips.org" "Emacs Tips") "* %?\n\t%a") @@ -1403,6 +1405,7 @@ If failed try to complete the common part with `company-complete-common'" ("idea" . ?d) ("work" . ?w) ("baes" . ?B) + ("rrdl" . ?r) ("offscreen" . ?O) ("computer" .?c) ("home" . ?h) diff --git a/snippets/fundamental-mode/*generic meeting (org)* b/snippets/fundamental-mode/*generic meeting (org)* new file mode 100644 index 0000000..96ac857 --- /dev/null +++ b/snippets/fundamental-mode/*generic meeting (org)* @@ -0,0 +1,14 @@ +# key: gm +# name: generic meeting (org) +# -- + +#+title: $1 +#+date: `(format-time-string "%Y-%m-%d")` + +* Agenda + +* Attendees + +* Meeting Notes + ++ $0 diff --git a/snippets/fundamental-mode/generic_meeting (org) b/snippets/fundamental-mode/generic_meeting (org) new file mode 100644 index 0000000..40dc21e --- /dev/null +++ b/snippets/fundamental-mode/generic_meeting (org) @@ -0,0 +1,14 @@ +# -*- mode: snippet -*- +# name: generic meeting (org) +# key: gm +# -- ++#TITLE: $1 ++#DATE: `(format-time-string "%Y-%m-%d")` + +* Agenda + +* Attendees + +* Meeting Notes + ++ $0 |