(Emacs)+org clock in configuration

This commit is contained in:
2022-07-28 18:12:31 +01:00
parent 79522df565
commit 59efce4986

View File

@@ -2294,6 +2294,20 @@ 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 clock-in
Org provides a nice timekeeping system that allows for managing how
much time is taken per task.
#+begin_src emacs-lisp
(use-package org-clock
:after org
:straight nil
:general
(local-leader
:keymaps 'org-mode-map
:infix "c"
"c" #'org-clock-in
"o" #'org-clock-out))
#+end_src
** C/C++ ** C/C++
Setup for C and C++ modes via the cc-mode package. C and C++ are Setup for C and C++ modes via the cc-mode package. C and C++ are
great languages for general purpose programming. Furthermore, they great languages for general purpose programming. Furthermore, they