diff options
Diffstat (limited to 'Emacs/.config/emacs/config.org')
-rw-r--r-- | Emacs/.config/emacs/config.org | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Emacs/.config/emacs/config.org b/Emacs/.config/emacs/config.org index 471849a..f8c7e09 100644 --- a/Emacs/.config/emacs/config.org +++ b/Emacs/.config/emacs/config.org @@ -2294,6 +2294,20 @@ a very tidy way to manage your time. "q" #'org-agenda-quit "r" #'org-agenda-redo)) #+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++ Setup for C and C++ modes via the cc-mode package. C and C++ are great languages for general purpose programming. Furthermore, they |