From 42ff8f3cbd282d52020ad5d9943a0651e0ad536c Mon Sep 17 00:00:00 2001 From: kj Date: Mon, 6 Jun 2022 15:01:38 -0400 Subject: [PATCH] Change org-capture key, template and remove an agenda file. --- configs/base-org.el | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/configs/base-org.el b/configs/base-org.el index 4a7b1d5..ce6ba34 100644 --- a/configs/base-org.el +++ b/configs/base-org.el @@ -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) ) ) )