Compare commits

..

No commits in common. "6d7fca2be4c95e5b06df79e976848f058a503351" and "22850fe355ad7b23e4588a7cf04b9a1ab8de0cdd" have entirely different histories.

View File

@ -290,8 +290,9 @@ of [[info:emacs#Saving Customizations][saving customizations (info)]].
#+name: lst:3rd-setopt-call #+name: lst:3rd-setopt-call
#+begin_src emacs-lisp -n :results silent #+begin_src emacs-lisp -n :results silent
;; To use different Org git repositories (org or gro): ;; To use different Org git repositories (org or gro):
;; (push (expand-file-name "~/VCS/org-mode/lisp") load-path) (push (expand-file-name "~/VCS/org-mode/lisp") load-path)
;; Postpone loading Org after shadowing Org and sh-script faces below. (push (expand-file-name "~/VCS/org-contrib/lisp") load-path)
;; Postpone (require 'org) after shadowing Org and sh-script faces below.
(when (eq system-type 'darwin) (when (eq system-type 'darwin)
;; Failed to initialize color list unarchiver: ... ;; Failed to initialize color list unarchiver: ...
@ -349,6 +350,7 @@ version.
;; Install and require `no-littering'. ;; Install and require `no-littering'.
(package-install 'no-littering) (package-install 'no-littering)
(require 'no-littering) (require 'no-littering)
;; (package-upgrade 'org) ; Use builtin or git!
;; Install the selected packages. ;; Install the selected packages.
(package-install-selected-packages))) (package-install-selected-packages)))
@ -556,6 +558,8 @@ verse and quote blocks are fontified using the `org-verse' and
(:weight bold))) (:weight bold)))
"My face to show a here-document." "My face to show a here-document."
:group 'sh-indentation) :group 'sh-indentation)
(require 'org)
#+end_src #+end_src
#+caption[Use =buffer-face-mode= to set fixed or variable pitch face]: #+caption[Use =buffer-face-mode= to set fixed or variable pitch face]:
@ -1078,7 +1082,7 @@ looks for files.
(directory-files-recursively package-user-dir "\\.info\\'")))) (directory-files-recursively package-user-dir "\\.info\\'"))))
(add-to-list 'Info-directory-list path nil #'file-equal-p))) (add-to-list 'Info-directory-list path nil #'file-equal-p)))
;; Make Emacs find the git Org info files. ;; Make Emacs find the git Org info files.
;; (push (expand-file-name "~/VCS/org-mode/doc") Info-directory-list) (push (expand-file-name "~/VCS/org-mode/doc") Info-directory-list)
;; Make Emacs find Python info files. ;; Make Emacs find Python info files.
(push (expand-file-name "~/.local/share/info") Info-directory-list)) (push (expand-file-name "~/.local/share/info") Info-directory-list))
#+end_src #+end_src