From 4e250314920ef640e897efada581cf5083a71ebe Mon Sep 17 00:00:00 2001 From: Case Duckworth Date: Mon, 3 Jan 2022 15:38:30 -0600 Subject: [PATCH] Fix typos --- init.el | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/init.el b/init.el index 83ab2cf..7cc4e43 100644 --- a/init.el +++ b/init.el @@ -455,13 +455,13 @@ (:+leader "c" #'org-capture "C-c" #'org-capture) (+org-capture-templates-setf "t" "Todo") (+org-capture-templates-setf "tt" - '("Today!" entry (file "todo.org") - (concat "* TODO %^{Title}\n" + `("Today!" entry (file "todo.org") + ,(concat "* TODO %^{Title}\n" "DEADLINE: %t\n" "\n%?"))) (+org-capture-templates-setf "ts" - '("Someday..." entry (file "todo.org") - (concat "* TODO %^{Title}\n" + `("Someday..." entry (file "todo.org") + ,(concat "* TODO %^{Title}\n" ":PROPERTIES:\n" ":CREATED: [%<%F %T>]\n" ":END:\n"