diff --git a/config.org b/config.org index 373e814..93f4093 100644 --- a/config.org +++ b/config.org @@ -448,14 +448,7 @@ Edna allows better dependency handling for todos and the like. #+end_src -** Org-archive with structure -Many thanks to Mark Edigmar's [[https://gist.github.com/edgimar/072d99d8650abe81a9fe7c8687c0c993][Gist]] -*** Keymaps -#+begin_src emacs-lisp -(map! :leader -:desc "Archive subtree" -:n "m A" #'org-archive-subtree-default) -#+end_src + ** Anki editing in org-mode #+begin_src emacs-lisp :tangle packages.el (package! anki-editor) @@ -759,6 +752,7 @@ Let's use a package or two to set a decent document class: (add-to-list 'org-latex-classes '("student-apa7" "\\documentclass[stu]{apa7} +\\usepackage[]{multicol} \\usepackage{mathptmx} [NO-DEFAULT-PACKAGES] [NO-PACKAGES]" @@ -771,6 +765,7 @@ Let's use a package or two to set a decent document class: (add-to-list 'org-latex-classes '("student-turabian" "\\documentclass{turabian-researchpaper} +\\usepackage[]{multicol} \\usepackage{mathptmx} [NO-PACKAGES] " @@ -785,7 +780,8 @@ Let's use a package or two to set a decent document class: '("student-mla" "\\documentclass[stu]{mla} \\hypersetup{hidelinks} -\\usepackage{times} " +\\usepackage[]{multicol} +\\usepackage{mathptmx} " ("\\section{%s}" . "\\section*{%s}") ("\\subsection{%s}" . "\\subsection*{%s}") ("\\subsubsection{%s}" . "\\subsubsection*{%s}") @@ -1121,6 +1117,7 @@ We need to bring in the correct SSH agent values, so that Emacs is aware of wher #+begin_src emacs-lisp (add-to-list 'org-tags-exclude-from-inheritance "hastodos") +(add-to-list 'org-tags-exclude-from-inheritance "ignore") #+end_src