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

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

View File

@@ -10,7 +10,13 @@
org-indent-mode t org-indent-mode t
org-return-follows-link t org-return-follows-link t
org-startup-folded 'content 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 :config
(add-hook 'org-mode-hook 'org-indent-mode)) (add-hook 'org-mode-hook 'org-indent-mode))