(Emacs)+org clock in configuration
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user