Install `hyperbole'
This commit is contained in:
parent
20958c10f5
commit
00917bb83b
19
README.org
19
README.org
@ -244,6 +244,7 @@ The [[info:emacs#Init File][init file (info)]] does not load the ~custom-file~ a
|
||||
(embark . "gnu-devel")
|
||||
(embark-consult . "gnu-devel")
|
||||
(engrave-faces . "gnu")
|
||||
(hyperbole . "gnu")
|
||||
(marginalia . "gnu-devel")
|
||||
(org . "gnu-devel")
|
||||
,(when (version< emacs-version "28.9.9")
|
||||
@ -265,6 +266,7 @@ The [[info:emacs#Init File][init file (info)]] does not load the ~custom-file~ a
|
||||
auctex ; Aalborg University Center TeX
|
||||
company ; complete anything
|
||||
engrave-faces ; convert font-lock to ANSI/HTML/LaTeX
|
||||
hyperbole ; text pattern hyperbuttons
|
||||
magit ; Git Text-based User Interface
|
||||
no-littering ; keep `user-emacs-directory' clean
|
||||
org ; thought organizer
|
||||
@ -916,15 +918,14 @@ looks for files.
|
||||
#+name: lst:configure-info
|
||||
#+begin_src emacs-lisp
|
||||
(with-eval-after-load 'info
|
||||
;; Make Emacs find the "*.info" files in `package-user-dir' on Gentoo Linux.
|
||||
(when (eq system-type 'gnu/linux)
|
||||
(dolist (path
|
||||
(nreverse
|
||||
(mapcar
|
||||
(lambda (name)
|
||||
(expand-file-name (file-name-directory name)))
|
||||
(directory-files-recursively package-user-dir "\\.info\\'"))))
|
||||
(add-to-list 'Info-directory-list path nil #'file-equal-p)))
|
||||
;; Make Emacs find ALL "*.info" files in `packages-user-dir'.
|
||||
(dolist (path
|
||||
(nreverse
|
||||
(mapcar
|
||||
(lambda (name)
|
||||
(expand-file-name (file-name-directory name)))
|
||||
(directory-files-recursively package-user-dir "\\.info\\'"))))
|
||||
(add-to-list 'Info-directory-list path nil #'file-equal-p))
|
||||
;; Make Emacs find my "python.info" file.
|
||||
(add-to-list 'Info-directory-list
|
||||
(expand-file-name "~/.local/share/info")))
|
||||
|
Loading…
x
Reference in New Issue
Block a user