From 59efce4986e8fdb51719a73b3c32ab1138e9f897 Mon Sep 17 00:00:00 2001 From: Aryadev Chavali Date: Thu, 28 Jul 2022 18:12:31 +0100 Subject: (Emacs)+org clock in configuration --- Emacs/.config/emacs/config.org | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'Emacs/.config/emacs/config.org') 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 -- cgit v1.2.3-13-gbd6f