diff options
author | fpi | 2020-07-27 11:11:42 +0200 |
---|---|---|
committer | fpi | 2020-07-27 11:13:26 +0200 |
commit | 4feeef8a1dc4394315ad84a0db2af0fe7b22556d (patch) | |
tree | aefe8cfcfd095b8af3236fb1ab6e9f83bb97306b | |
parent | Add olivetti mode (diff) |
Make org only show h:mm durations and no days
-rw-r--r-- | emacs-init.org | 7 |
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 |