diff options
| author | Amin Bandali <bandali@kelar.org> | 2022-05-07 16:13:37 -0400 | 
|---|---|---|
| committer | Amin Bandali <bandali@kelar.org> | 2022-05-19 22:20:02 -0400 | 
| commit | 966011a81f3d7e86dd8cb8b39854a911a3bf5e61 (patch) | |
| tree | ec37862b3ef7e25520c8b2a76d3b56e4049bbff5 | |
| parent | 69ad7e369bcbb17c8301a5e26ff6e3300649b98f (diff) | |
| download | configs-966011a81f3d7e86dd8cb8b39854a911a3bf5e61.tar.gz configs-966011a81f3d7e86dd8cb8b39854a911a3bf5e61.tar.xz configs-966011a81f3d7e86dd8cb8b39854a911a3bf5e61.zip  | |
* .emacs.d/init.el: Add "/usr/share/info/" to 'Info-directory-list'.
Diffstat (limited to '')
| -rw-r--r-- | .emacs.d/init.el | 10 | 
1 files changed, 6 insertions, 4 deletions
diff --git a/.emacs.d/init.el b/.emacs.d/init.el index 9c2f1ff..6169072 100644 --- a/.emacs.d/init.el +++ b/.emacs.d/init.el @@ -447,10 +447,12 @@ This sets each user option VAR's value to the corresponding VALUE.  ;; info  (with-eval-after-load 'info -  (add-to-list -   'Info-directory-list -   (expand-file-name -    (convert-standard-filename "info/") source-directory))) +  (csetq +   Info-directory-list +   `(,@Info-directory-list +     ,(expand-file-name +       (convert-standard-filename "info/") source-directory) +     "/usr/share/info/")))  ;; faces  (when (display-graphic-p)  | 
