Install Org from https://elpa.gnu.org/devel/
This commit is contained in:
parent
da12660da3
commit
6549db1b34
26
README.org
26
README.org
@ -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"
|
||||
|
Loading…
Reference in New Issue
Block a user