up tasks example
This commit is contained in:
parent
99c08e560c
commit
663c79895e
|
@ -96,7 +96,7 @@ Contenu du fichier de config [[file:~/.emacs]]
|
||||||
(setq org-fontify-whole-heading-line t)
|
(setq org-fontify-whole-heading-line t)
|
||||||
(setq org-tags-column 0)
|
(setq org-tags-column 0)
|
||||||
(setq org-adapt-indentation t)
|
(setq org-adapt-indentation t)
|
||||||
;; (setq org-src-preserve-indentation t)
|
;; (setq org-src-preserve-indentation t)
|
||||||
(setq org-deadline-warning-days 0)
|
(setq org-deadline-warning-days 0)
|
||||||
(setq line-move-visual t)
|
(setq line-move-visual t)
|
||||||
;; Keep tasks with dates on the global todo lists
|
;; Keep tasks with dates on the global todo lists
|
||||||
|
@ -1126,7 +1126,7 @@ Deft
|
||||||
#+end_src
|
#+end_src
|
||||||
|
|
||||||
** Auto indentation et autres trucs
|
** Auto indentation et autres trucs
|
||||||
#+begin_src emacs-lisp
|
#+begin_src emacs-lisp
|
||||||
|
|
||||||
(use-package aggressive-indent)
|
(use-package aggressive-indent)
|
||||||
(global-aggressive-indent-mode 1)
|
(global-aggressive-indent-mode 1)
|
||||||
|
@ -1149,7 +1149,7 @@ Deft
|
||||||
(setq user-full-name "TyKayn"
|
(setq user-full-name "TyKayn"
|
||||||
user-mail-address "contact@cipherbliss.com")
|
user-mail-address "contact@cipherbliss.com")
|
||||||
|
|
||||||
#+end_src
|
#+end_src
|
||||||
** Markdown
|
** Markdown
|
||||||
#+begin_src emacs-lisp
|
#+begin_src emacs-lisp
|
||||||
|
|
||||||
|
@ -1174,6 +1174,7 @@ Deft
|
||||||
#+begin_src emacs-lisp
|
#+begin_src emacs-lisp
|
||||||
|
|
||||||
;; BibLaTeX settings
|
;; BibLaTeX settings
|
||||||
|
|
||||||
;; bibtex-mode
|
;; bibtex-mode
|
||||||
(setq bibtex-dialect 'biblatex)
|
(setq bibtex-dialect 'biblatex)
|
||||||
|
|
||||||
|
@ -1216,13 +1217,16 @@ Deft
|
||||||
)
|
)
|
||||||
|
|
||||||
;; change font size on load of text files
|
;; change font size on load of text files
|
||||||
(add-hook 'text-mode-hook (lambda ()
|
(add-hook 'text-mode-hook
|
||||||
|
(lambda ()
|
||||||
(interactive)
|
(interactive)
|
||||||
(message "Olivetti text-mode-hook")
|
(message "Olivetti text-mode-hook")
|
||||||
;; (text-scale-increase 1.5)
|
;; (text-scale-increase 1.5)
|
||||||
(olivetti-set-width .67)
|
(olivetti-set-width .67)
|
||||||
;; (hidden-mode-line-mode)
|
;; (hidden-mode-line-mode)
|
||||||
(olivetti-mode 1)))
|
(olivetti-mode 1)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
|
||||||
;; focus on text in fullscreen
|
;; focus on text in fullscreen
|
||||||
(use-package writeroom-mode)
|
(use-package writeroom-mode)
|
||||||
|
@ -1279,7 +1283,8 @@ Deft
|
||||||
(insert-file-contents final)
|
(insert-file-contents final)
|
||||||
(buffer-string))
|
(buffer-string))
|
||||||
"/*]]>*/-->\n"
|
"/*]]>*/-->\n"
|
||||||
"</style>\n")))))
|
"</style>\n"))
|
||||||
|
)))
|
||||||
|
|
||||||
(add-hook 'org-export-before-processing-hook 'my-org-inline-css-hook)
|
(add-hook 'org-export-before-processing-hook 'my-org-inline-css-hook)
|
||||||
|
|
||||||
|
@ -1343,34 +1348,20 @@ Deft
|
||||||
faire de la recherche avec Ctrl + F
|
faire de la recherche avec Ctrl + F
|
||||||
faire du remplacement avec Ctrl + H
|
faire du remplacement avec Ctrl + H
|
||||||
|
|
||||||
|
|
||||||
#+begin_src emacs-lisp
|
#+begin_src emacs-lisp
|
||||||
|
|
||||||
;; non pris en compte pour l'ajout d'une deadline ou schedule
|
;; non pris en compte pour l'ajout d'une deadline ou schedule
|
||||||
|
|
||||||
(setq calendar-day-abbrev-array ["Dim" "Lun" "Mar" "Mer" "Jeu" "Ven" "Sam"])
|
(setq calendar-day-abbrev-array ["Dim" "Lun" "Mar" "Mer" "Jeu" "Ven" "Sam"])
|
||||||
#+end_src
|
#+end_src
|
||||||
|
|
||||||
uuuuehh
|
uuuuehh
|
||||||
* Autre
|
* Autre
|
||||||
La suite est à inventer.
|
La suite est à inventer.
|
||||||
Pour installer cette configuration d'emacs, lancez le script
|
Pour installer cette configuration d'emacs, lancez le script qui se trouve ici https://forge.chapril.org/tykayn/scripts/src/branch/master/install_emacs_tk.sh
|
||||||
|
|
||||||
|
|
||||||
#+begin_quote bash
|
#+begin_src bash
|
||||||
# bash install_emacs_config.sh
|
wget https://forge.chapril.org/tykayn/scripts/raw/branch/master/install_emacs_tk.sh | bash
|
||||||
#!/bin/bash
|
#+end_src
|
||||||
echo "installation d'emacs version snap"
|
|
||||||
|
|
||||||
sudo apt install snapd
|
|
||||||
snap install emacs --channel=beta --classic
|
|
||||||
|
|
||||||
mkdir -p ~/Nextcloud/textes/orgmode
|
|
||||||
mkdir -p ~/Nextcloud/textes/orgmode/org-roam
|
|
||||||
|
|
||||||
mkdir -p ~/Nextcloud/textes/orgmode
|
|
||||||
|
|
||||||
touch ~/.emacs
|
|
||||||
touch ~/Nextcloud/textes/orgmode/config.org
|
|
||||||
touch ~/Nextcloud/textes/orgmode/tasks.org
|
|
||||||
|
|
||||||
#+end_quote
|
|
||||||
|
|
|
@ -11,31 +11,23 @@ utiliser la méthode GTD
|
||||||
- Vider son fichier de notes TODO du téléphone
|
- Vider son fichier de notes TODO du téléphone
|
||||||
Remplir l'inbox avec les notes de nextcloud https://cloud.tykayn.fr/index.php/apps/notes/note/405928
|
Remplir l'inbox avec les notes de nextcloud https://cloud.tykayn.fr/index.php/apps/notes/note/405928
|
||||||
- Voir l'agenda de la semaine: https://cloud.tykayn.fr/index.php/apps/calendar/timeGridWeek/now
|
- Voir l'agenda de la semaine: https://cloud.tykayn.fr/index.php/apps/calendar/timeGridWeek/now
|
||||||
* Activités quantifiées globales
|
* Inbox [0/0] :inbox:
|
||||||
|
* Activités globales
|
||||||
** Lecture
|
** Lecture
|
||||||
** Paperasses
|
** Paperasses
|
||||||
** RDV boulot
|
** RDV boulot
|
||||||
** Pauses
|
** Pauses
|
||||||
** Fun
|
** Fun
|
||||||
* Inbox [0/0] :inbox:
|
* Administratif [/]
|
||||||
* Not inbox [/]
|
* Social [/] :social:
|
||||||
* Wiki personnel
|
* Relances régulières [/] :relances:
|
||||||
* Next [/]
|
* Boulot [/] :boulot:
|
||||||
* Relances régulières [/]
|
|
||||||
* Meetings [/]
|
|
||||||
* Tel [/]
|
|
||||||
* Blog [/]
|
|
||||||
* Boulot [/]
|
|
||||||
* Habitudes [/]
|
|
||||||
* Emmerdes administratif [/]
|
|
||||||
* Travaux et bricolage [/] :travaux:
|
* Travaux et bricolage [/] :travaux:
|
||||||
* Associations [/] :assos:
|
* Associations [/] :assos:
|
||||||
* Social [/] :social:
|
|
||||||
* Vidéos [/] :videos:
|
|
||||||
* Achats [/] :achats:
|
* Achats [/] :achats:
|
||||||
* Dev [/] :dev:
|
* Dev [/] :dev:
|
||||||
* Administration Système [/] :adminsys:
|
** Administration Système [/] :adminsys:
|
||||||
* Sauvegarde et archives [/] :backup:
|
** Sauvegarde et archives [/] :backup:
|
||||||
* Recherche et éducation [/] :edu:
|
* Recherche et éducation [/] :edu:
|
||||||
* Lecture [/] :lecture:
|
* Lecture [/] :lecture:
|
||||||
* Vacances [/]
|
* Vacances [/]
|
||||||
|
|
Loading…
Reference in New Issue