Erweiterung Templates und Anpassung Init-Files

This commit is contained in:
knedlik
2026-04-10 23:27:32 +02:00
parent 7be93eb0f9
commit f8d711bb1e
15 changed files with 189 additions and 40 deletions

View File

@@ -4,6 +4,18 @@
(add-hook 'org-mode-hook #'my/text-indentation-setup)
(add-hook 'org-mode-hook #'org-indent-mode)
(add-hook 'org-mode-hook
(lambda ()
(local-set-key (kbd "RET") #'org-return)))
(setq org-agenda-files '("~/org"))
(setq org-complete-tags-always-offer-all-agenda-tags t)
(defun my/org-export-to-tmp-pdf ()
(interactive)
(let ((org-export-show-temporary-export-buffer nil))
(org-latex-export-to-pdf nil nil nil t nil "/tmp/tmp.tex")))
(provide 'init-org)