Compare commits

...

2 Commits

Author SHA1 Message Date
kj
cfb3279f52 Disable maximize at start. 2022-05-09 21:16:56 -04:00
kj
1ade083d25 Move notes and agenda to another path. 2022-05-09 20:28:50 -04:00
2 changed files with 10 additions and 10 deletions

View File

@ -128,7 +128,7 @@
(setup-daemon))))
(message "Corriendo en modo normal."))
(add-hook 'window-setup-hook 'toggle-frame-maximized t)
;(add-hook 'window-setup-hook 'toggle-frame-maximized t)
(load custom-file)

View File

@ -91,10 +91,10 @@
;; Archivos a usarse en org-agenda
(setq org-agenda-files
'("~/Proyectos/ORGenda/Ideas.org"
"~/Proyectos/ORGenda/IdeasTwitch.org"
"~/Proyectos/ORGenda/Proyectos.org"
"~/Proyectos/ORGenda/Tareas.org")
'("~/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
@ -110,16 +110,16 @@
(setq org-capture-templates
`(("t" "Tareas / Projectos")
("tt" "Tareas" entry (file+olp "~/Proyectos/ORGenda/Tareas.org")
("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 "~/Proyectos/ORGenda/Proyectos.org")
("tp" "Proyectos" entry (file+olp "~/Documentos/ORG/Agenda/Proyectos.org")
"* TODO %?\n %U\n %a\n %i" :empty-lines 1)
("i" "Ideas")
("ii" "Ideas General" entry
(file+olp "~/Proyectos/ORGenda/ideas.org")
(file+olp "~/Documentos/ORG/Agenda/ideas.org")
"* TODO %?\n %a\n %i" :empty-lines 1)
("it" "Ideas Twitch" entry
(file+olp "~/Proyectos/ORGenda/IdeasTwitch.org")
(file+olp "~/Documentos/ORG/Agenda/IdeasTwitch.org")
"* TODO %?\n %a\n %i" :empty-lines 1)
)
)
@ -145,7 +145,7 @@
(setq org-roam-v2-ack t)
(setq org-roam-completion-system 'ivy)
:custom
(org-roam-directory "~/Proyectos/RoamNotes")
(org-roam-directory "~/Documentos/ORG/Notas")
(org-roam-completion-everywhere t)
:config
(org-roam-setup))