Add Org mode export backends and texlive dependency

This commit is contained in:
Fabio Scotto di Santolo
2026-04-16 16:15:41 +02:00
parent 1ba6004040
commit 199f0f63a7
2 changed files with 8 additions and 1 deletions

View File

@@ -10,7 +10,13 @@
org-indent-mode t
org-return-follows-link t
org-startup-folded 'content
org-todo-keywords '((sequence "🆕(t)" "▶️(s)" "⏳(w)" "🔎(p)" "|" "✅(d)" "🗑(c)" "👨(g)")))
org-todo-keywords '((sequence "🆕(t)" "▶️(s)" "⏳(w)" "🔎(p)" "|" "✅(d)" "🗑(c)" "👨(g)"))
org-export-backends '(html latex odt markdown ascii icalendar)
org-latex-pdf-process '("pdflatex -interaction nonstopmode %f"
"pdflatex -interaction nonstopmode %f")
org-latex-default-class "article"
org-html-doctype "html5"
org-html-html5-fancy t)
:config
(add-hook 'org-mode-hook 'org-indent-mode))