summaryrefslogtreecommitdiff
path: root/emacs-init.org
diff options
context:
space:
mode:
authorfpi2020-07-27 11:11:42 +0200
committerfpi2020-07-27 11:13:26 +0200
commit4feeef8a1dc4394315ad84a0db2af0fe7b22556d (patch)
treeaefe8cfcfd095b8af3236fb1ab6e9f83bb97306b /emacs-init.org
parentAdd olivetti mode (diff)
Make org only show h:mm durations and no days
Diffstat (limited to '')
-rw-r--r--emacs-init.org7
1 files changed, 7 insertions, 0 deletions
diff --git a/emacs-init.org b/emacs-init.org
index b8cc871..ac8ebcd 100644
--- a/emacs-init.org
+++ b/emacs-init.org
@@ -3451,6 +3451,13 @@ This function is handy to use in header arguments to create names based on the c
(post (or post "")))
(format "%s%s%s" pre (nth 4 (org-heading-components)) post)))
#+end_src
+*** Durations
+#+begin_src emacs-lisp
+(use-package org-duration
+ :after org
+ :custom
+ (org-duration-format '(("h" . t) ("min" . t) (special . h:mm))))
+#+end_src
*** ox-reveal
#+BEGIN_SRC emacs-lisp
(use-package ox-reveal