diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-07-21 00:39:29 +0200 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-07-21 00:39:29 +0200 |
commit | b22f5715b951a62673890bdb98da3413cd0656c6 (patch) | |
tree | f58e691553b6c461262a458722f28c29f702f225 /fnl/config | |
parent | 1e74709c246ebc4f05d6a0f9ded43187d3117276 (diff) |
Update the org templates
Diffstat (limited to 'fnl/config')
-rw-r--r-- | fnl/config/orgmode.fnl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/fnl/config/orgmode.fnl b/fnl/config/orgmode.fnl index 96cd2e0..25501af 100644 --- a/fnl/config/orgmode.fnl +++ b/fnl/config/orgmode.fnl @@ -6,10 +6,10 @@ (def- templates {:t {:description :Task - :template "* TODO %?\n %u\n DEADLINE: %T\n :TAGS:"} + :template "* TODO %?\n %u\n DEADLINE: %T\n"} :m {:description :Meeting - :template "* MEETING %? :MEETING: :LOGBOOK: CLOCK: %U :END:"} - :n {:description :Note :template "* NOTE %? :NOTE:\n %u\n :TAGS:"}}) + :template "* Meeting %?"} + :n {:description :Note :template "* NOTE %? :NOTE:\n %u\n"}}) (defn- create-title [task] (string.format "%s (%s)" task.category task.humanized_duration)) |