summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfpi2020-07-20 10:58:10 +0200
committerfpi2020-07-20 11:04:54 +0200
commit86378d27977c5220f01b6b63fbfeca1add6d18e5 (patch)
treeba6f25747bf596d1e3d8f6ed321df51b72fb2ebd
parentEnable 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.org3
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))