Compare commits
3 Commits
9f9c032a90
...
5a63157892
Author | SHA1 | Date |
---|---|---|
Alexandre LUCAZEAU | 5a63157892 | |
Alexandre LUCAZEAU | 55a2a5fd31 | |
Alexandre LUCAZEAU | c8553ffd93 |
|
@ -6,3 +6,4 @@
|
||||||
- [[file:emacs-org-roam.org][Introduction à org-roam]]
|
- [[file:emacs-org-roam.org][Introduction à org-roam]]
|
||||||
- [[file:emacs-org-clock.org][utilisation de org-clock]]
|
- [[file:emacs-org-clock.org][utilisation de org-clock]]
|
||||||
- [[file:emacs-journal-d-activite.org][Tenir un journal d'activité grace à org-mode]]
|
- [[file:emacs-journal-d-activite.org][Tenir un journal d'activité grace à org-mode]]
|
||||||
|
- [[file:emacs-shortkeys.org][Fiche récapitulatrice de raccourcis claviers]]
|
||||||
|
|
|
@ -1 +1,10 @@
|
||||||
* Utilisation de *org-clock*
|
* Utilisation du clocking pour suivre ses activités
|
||||||
|
Or-mode possède un module permettant de mesurer le temps passer sur
|
||||||
|
les différentes actions.
|
||||||
|
|
||||||
|
Dans cet article nous allons voir comment enregistrer ses temps, tenir
|
||||||
|
un journal, obtenir un tableau de bord
|
||||||
|
** les bases
|
||||||
|
** org-capture : tenir un journal
|
||||||
|
** le tableau de bord
|
||||||
|
** rappel des commandes utiles
|
||||||
|
|
|
@ -25,7 +25,8 @@ Ma configuration est assez basique :
|
||||||
(org-roam-completion-everywhere t)
|
(org-roam-completion-everywhere t)
|
||||||
:bind (("C-c n l" . org-roam-buffer-toggle)
|
:bind (("C-c n l" . org-roam-buffer-toggle)
|
||||||
("C-c n f" . org-roam-node-find)
|
("C-c n f" . org-roam-node-find)
|
||||||
("C-c n i" . org-roam-node-insert))
|
("C-c n i" . org-roam-node-insert)
|
||||||
|
("C-c n o" . emacs-org-clock.org))
|
||||||
:config
|
:config
|
||||||
(org-roam-setup)
|
(org-roam-setup)
|
||||||
(org-roam-db-autosync-mode)
|
(org-roam-db-autosync-mode)
|
||||||
|
|
|
@ -0,0 +1,23 @@
|
||||||
|
* Quelques raccourcis claviers
|
||||||
|
** emacs
|
||||||
|
*** les bases
|
||||||
|
+ ouvrir un fichier : ~C-x C-f~
|
||||||
|
+ sauvegarder le buffer en cours : ~C-x s~
|
||||||
|
+ fermer la frame active : ~C-x 5 0~
|
||||||
|
|
||||||
|
*** clocking
|
||||||
|
+ débuter le clocking : ~C-c C-x C-i~
|
||||||
|
+ terminer le clocking : ~C-c C-x C-o~
|
||||||
|
** org-roam et org-mode
|
||||||
|
- Ouvrir ou créer une note : ~C-c n f~
|
||||||
|
- Insérer un lien vers une note : ~C-c n i~
|
||||||
|
- Transformer une section en note : ~C-c n o~
|
||||||
|
- ouvrir l'agenda : ~C-c a~
|
||||||
|
** perso
|
||||||
|
- ouvrir le fichier journal : ~C-j~
|
||||||
|
- ouvrir le fichier du backlog : ~C-b~
|
||||||
|
- exécuter org-capture : ~C-c c~
|
||||||
|
- stocke le lien vers notre position : ~C-cl~
|
||||||
|
- insère un lien stocké dans le fichier org : ~org-insert-link~
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue