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 5035e85f29
commit 4113801bac
2 changed files with 8 additions and 1 deletions

View File

@@ -116,6 +116,7 @@ profile_packages:
- rsync
- shotwell
- terminus-font
- texlive
- Thunar
- thunar-archive-plugin
- thunar-volman

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))