This commit is contained in:
Gerard Vermeulen 2022-05-17 05:10:55 +02:00
parent da12660da3
commit 6549db1b34
1 changed files with 17 additions and 9 deletions

View File

@ -198,11 +198,19 @@ The [[info:emacs#Init File][init file (info)]] does not load the ~custom-file~ a
#+begin_src emacs-lisp
(custom-set-variables
'(package-archives '(("gnu" . "https://elpa.gnu.org/packages/")
("nongnu" . "https://elpa.nongnu.org/nongnu/")
("melpa" . "https://melpa.org/packages/")))
;; Pin those packages to GNU ELPA to get the info documentation.
'(package-pinned-packages '((consult . "gnu")
("gnu-devel" . "https://elpa.gnu.org/devel/")
("melpa" . "https://melpa.org/packages/")
("nongnu" . "https://elpa.nongnu.org/nongnu/")))
;; Pin packages to GNU ELPA for info or stability.
'(package-pinned-packages '((auctex . "gnu")
(compat . "gnu")
(consult . "gnu")
(marginalia . "gnu")
(org . "gnu-devel")
(queue . "gnu")
(rainbow-mode . "gnu")
(spinner . "gnu")
(xr . "gnu")
(vertico . "gnu")))
'(package-selected-packages
'(async ; asynchroneous processing
@ -834,7 +842,7 @@ variable in section are compatible. The local variable ~compile-command~ in the
my ($name, $path) = fileparse( $$Psource );
return system "makeglossaries -d '$path' '$name'";
}
# Emacs looks for "Local variables:" after the last "?\n?\f".
# Emacs looks for "Local variables:" after the last "newline-formfeed".
# Local Variables:
# mode: perl
@ -2081,7 +2089,7 @@ variables in order to export the =info-org-link= types in this document to
(interactive)
(org-eval-named-blocks-with-infix "python-setup"))
;; Emacs looks for "Local variables:" after the last "?\n?\f".
;; Emacs looks for "Local variables:" after the last "newline-formfeed".
(add-to-list 'safe-local-eval-forms '(org-eval-emacs-lisp-setup-blocks)))
(with-eval-after-load 'emacs
@ -2098,7 +2106,7 @@ variables in order to export the =info-org-link= types in this document to
(goto-char (org-element-property :begin block))
(org-babel-execute-src-block)))))
;; Emacs looks for "Local variables:" after the last "?\n?\f".
;; Emacs looks for "Local variables:" after the last "newline-formfeed".
(add-to-list 'safe-local-eval-forms
'(apply 'my-org-eval-blocks-named '("emacs-lisp-setup"))))
#+end_src
@ -3961,7 +3969,7 @@ generation.
#+begin_src emacs-lisp
(provide 'init)
;; Emacs looks for "Local variables:" after the last "?\n?\f".
;; Emacs looks for "Local variables:" after the last "newline-formfeed".
;; Local Variables:
;; indent-tabs-mode: nil
@ -3978,7 +3986,7 @@ Only the [[info:org#Top][Org]] source file shows the local variables footer.
\printbibliography
# Emacs looks for "Local variables:" after the last "\?n\?f".
# Emacs looks for "Local variables:" after the last "newline-formfeed".
# Local Variables:
# compile-command: "latexmk -interaction=nonstopmode -lualatex -pvc -shell-escape README.tex"