Change org-capture key, template and remove an agenda file.

This commit is contained in:
kj 2022-06-06 15:01:38 -04:00
parent 8fa7bc9ed7
commit 42ff8f3cbd
1 changed files with 4 additions and 8 deletions

View File

@ -40,7 +40,7 @@
:ensure t
:straight (:type built-in)
:bind (("C-c a" . org-agenda)
("C-c c" . org-capture))
("C-c x" . org-capture))
:hook
(org-mode . kj/org-hook)
:config
@ -96,14 +96,12 @@
(setq org-agenda-files
'("~/Documentos/ORG/Agenda/Ideas.org"
"~/Documentos/ORG/Agenda/IdeasTwitch.org"
"~/Documentos/ORG/Agenda/Proyectos.org"
"~/Documentos/ORG/Agenda/Tareas.org")
)
;; Archivos entre los que se moverán las tareas
(setq org-refile-targets
'(("Archivo.org" :maxlevel . 1)
("Proyectos.org" :maxlevel . 1)
("IdeasTwitch.org" :maxlevel . 1)
("Ideas.org" :maxlevel . 1)
("Tareas.org" :maxlevel . 1)))
@ -114,16 +112,14 @@
(setq org-capture-templates
`(("t" "Tareas / Projectos")
("tt" "Tareas" entry (file+olp "~/Documentos/ORG/Agenda/Tareas.org")
"* TODO %?\n %U\n %a\n %i" :empty-lines 1)
("tp" "Proyectos" entry (file+olp "~/Documentos/ORG/Agenda/Proyectos.org")
"* TODO %?\n %U\n %a\n %i" :empty-lines 1)
"* TODO %?" :empty-lines 1)
("i" "Ideas")
("ii" "Ideas General" entry
(file+olp "~/Documentos/ORG/Agenda/ideas.org")
"* TODO %?\n %a\n %i" :empty-lines 1)
"* TODO %?" :empty-lines 1)
("it" "Ideas Twitch" entry
(file+olp "~/Documentos/ORG/Agenda/IdeasTwitch.org")
"* TODO %?\n %a\n %i" :empty-lines 1)
"* TODO %?" :empty-lines 1)
)
)
)