(Emacs)+org capture configuration

Made some templates and configured it.
This commit is contained in:
2023-07-14 19:50:42 +01:00
parent 2050a1df3a
commit 2fd6fe4794

View File

@@ -2682,6 +2682,23 @@ a very tidy way to manage your time.
"q" #'org-agenda-quit "q" #'org-agenda-quit
"r" #'org-agenda-redo)) "r" #'org-agenda-redo))
#+end_src #+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 clock-in
Org provides a nice timekeeping system that allows for managing how Org provides a nice timekeeping system that allows for managing how
much time is taken per task. It even has an extensive reporting much time is taken per task. It even has an extensive reporting