I want to use the pomodoro technique in org mode, as described in http://orgmode.org/worg/org-gtd-etc.html
I added the following lines to the .emacs file
(add-to-list 'org-modules 'org-timer) (setq org-timer-default-timer 25) (add-hook 'org-clock-in-hook '(lambda () (if (not org-timer-current-timer) (org-timer-set-timer '(16)))))
When emacs starts, the following warning is displayed in the warning buffer.
Symbol value as variable is void: org-modules
I am using the org-mode version - 7.7.291.g37db, which is cloned from git: //orgmode.org/org-mode.git
How to get rid of an error.
source share