Compare commits

..

No commits in common. "6dbf0e97465d937519cabf6e7ef2c1fc99b81697" and "553694530e3fe22e6f92e475cbfca2e334358390" have entirely different histories.

2 changed files with 4 additions and 4 deletions

View File

@ -9,7 +9,7 @@
;; Performace tuning
;; @see https://emacs-lsp.github.io/lsp-mode/page/performance/
(setq read-process-output-max (* 1024 (* 3 1024))) ;; 3MB
(setq read-process-output-max (* 1024 1024)) ;; 1MB
(setenv "LSP_USE_PLISTS" "true")
(use-package lsp-mode

View File

@ -112,14 +112,14 @@
(setq org-capture-templates
`(("t" "Tareas / Projectos")
("tt" "Tareas" entry (file+olp "~/Documentos/ORG/Agenda/Tareas.org")
"* TODO %? \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)
)
)
)