feat[archive]: Removed bad archive feature

This commit is contained in:
Judah Sotomayor 2023-11-27 11:40:07 -05:00
parent 9ac4f2988b
commit 68bad990c0
Signed by: judahsotomayor
SSH Key Fingerprint: SHA256:9Dq4ppxhfAjbX+7HLXEt+ROMiIojI6kqQgUyFUJb9lI

View File

@ -448,14 +448,7 @@ Edna allows better dependency handling for todos and the like.
#+end_src #+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 ** Anki editing in org-mode
#+begin_src emacs-lisp :tangle packages.el #+begin_src emacs-lisp :tangle packages.el
(package! anki-editor) (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 (add-to-list 'org-latex-classes
'("student-apa7" '("student-apa7"
"\\documentclass[stu]{apa7} "\\documentclass[stu]{apa7}
\\usepackage[]{multicol}
\\usepackage{mathptmx} \\usepackage{mathptmx}
[NO-DEFAULT-PACKAGES] [NO-DEFAULT-PACKAGES]
[NO-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 (add-to-list 'org-latex-classes
'("student-turabian" '("student-turabian"
"\\documentclass{turabian-researchpaper} "\\documentclass{turabian-researchpaper}
\\usepackage[]{multicol}
\\usepackage{mathptmx} \\usepackage{mathptmx}
[NO-PACKAGES] [NO-PACKAGES]
" "
@ -785,7 +780,8 @@ Let's use a package or two to set a decent document class:
'("student-mla" '("student-mla"
"\\documentclass[stu]{mla} "\\documentclass[stu]{mla}
\\hypersetup{hidelinks} \\hypersetup{hidelinks}
\\usepackage{times} " \\usepackage[]{multicol}
\\usepackage{mathptmx} "
("\\section{%s}" . "\\section*{%s}") ("\\section{%s}" . "\\section*{%s}")
("\\subsection{%s}" . "\\subsection*{%s}") ("\\subsection{%s}" . "\\subsection*{%s}")
("\\subsubsection{%s}" . "\\subsubsection*{%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 #+begin_src emacs-lisp
(add-to-list 'org-tags-exclude-from-inheritance "hastodos") (add-to-list 'org-tags-exclude-from-inheritance "hastodos")
(add-to-list 'org-tags-exclude-from-inheritance "ignore")
#+end_src #+end_src