From 409b5ee1cbf856afa2b4476598a44e4d3f59c833 Mon Sep 17 00:00:00 2001 From: ndwarshuis Date: Mon, 4 Feb 2019 09:38:05 -0500 Subject: [PATCH] require clocking to ensure custom commands work on init --- conf.org | 2 ++ 1 file changed, 2 insertions(+) diff --git a/conf.org b/conf.org index 45e165c..131fd10 100644 --- a/conf.org +++ b/conf.org @@ -818,9 +818,11 @@ Org has several extensions in the form of loadable modules. =org-protocol= is us #+BEGIN_SRC emacs-lisp (setq org-modules '(org-habit org-protocol)) (require 'org) +;; make sure everything else works that I have customly defined (require 'org-agenda) (require 'org-protocol) (require 'org-habit) +(require 'org-clock) #+END_SRC *** directory I keep all my org files in one place.