diff options
author | fpi | 2020-07-20 10:58:10 +0200 |
---|---|---|
committer | fpi | 2020-07-20 11:04:54 +0200 |
commit | 86378d27977c5220f01b6b63fbfeca1add6d18e5 (patch) | |
tree | ba6f25747bf596d1e3d8f6ed321df51b72fb2ebd | |
parent | Enable twoway org <-> caldav sync (diff) |
Disable byte-compilation for org-time-budgets
Byte compiling breaks due to my poorly defined function.
-rw-r--r-- | emacs-init.org | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/emacs-init.org b/emacs-init.org index 2ef5161..8944598 100644 --- a/emacs-init.org +++ b/emacs-init.org @@ -2915,7 +2915,8 @@ Gives an overview of time spent on defined budgets this week. Great to track if #+begin_src emacs-lisp (use-package org-time-budgets :straight (:host github :repo "fpiper/org-time-budgets" - :branch "develop") + :branch "develop" + :no-byte-compile t) :custom (org-time-budgets '((:title "Work" :match "+work-nowork" :budget "40:00" :blocks (workday week)) (:title "Research" :match "+work+research" :budget "24:00" :blocks (nil week)) |