Compare commits

...

2 Commits

Author SHA1 Message Date
kj
6dbf0e9746 Increase lsp read-process-output-max to 3MB. 2022-06-07 03:09:10 -04:00
kj
f8b5174274 Retore part of the old org-capture templates. 2022-06-07 03:08:03 -04:00
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 1024)) ;; 1MB
(setq read-process-output-max (* 1024 (* 3 1024))) ;; 3MB
(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 %?" :empty-lines 1)
"* TODO %? \n %a\n %i" :empty-lines 1)
("i" "Ideas")
("ii" "Ideas General" entry
(file+olp "~/Documentos/ORG/Agenda/ideas.org")
"* TODO %?" :empty-lines 1)
"* TODO %? \n %a\n %i" :empty-lines 1)
("it" "Ideas Twitch" entry
(file+olp "~/Documentos/ORG/Agenda/IdeasTwitch.org")
"* TODO %?" :empty-lines 1)
"* TODO %? \n %a\n %i" :empty-lines 1)
)
)
)