diff options
Diffstat (limited to 'Emacs/.config/emacs')
-rw-r--r-- | Emacs/.config/emacs/config.org | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/Emacs/.config/emacs/config.org b/Emacs/.config/emacs/config.org index bc78ff8..adea897 100644 --- a/Emacs/.config/emacs/config.org +++ b/Emacs/.config/emacs/config.org @@ -2682,6 +2682,23 @@ a very tidy way to manage your time. "q" #'org-agenda-quit "r" #'org-agenda-redo)) #+end_src +** Org capture +#+begin_src emacs-lisp +(use-package org-capture + :straight nil + :init + (setq + org-capture-templates + '(("t" "A todo" entry + (file "") + "* TODO %? +%T +%a")) + org-default-notes-file (concat org-directory "/todo.org")) + :general + (file-leader + "w" #'org-capture)) +#+end_src ** Org clock-in Org provides a nice timekeeping system that allows for managing how much time is taken per task. It even has an extensive reporting |