Compare commits
2 Commits
d5ed7d10f3
...
c055905a79
| Author | SHA1 | Date | |
|---|---|---|---|
| c055905a79 | |||
| 89aca95fb4 |
@@ -60,12 +60,12 @@ Fallbacks to `user-emacs-directory' if this file is not loaded.")
|
||||
EXCLUDE-LIST, while for the dirs in INCLUDE-LIST, it will add all the
|
||||
first level dirs of that dir too.
|
||||
Example: (add-to-load-path-with-subdirs \"~/.emacs.d\" '(\".\" \"..\" \"backup\") '(\"vendor\" \"my-lisp\"))"
|
||||
(add-to-list 'load-path base t) ;; append so shipped packages are loaded first
|
||||
(add-to-list 'load-path base nil) ;; no append so shipped packages are loaded first
|
||||
(dolist (f (directory-files base))
|
||||
(let ((name (concat base "/" f)))
|
||||
(when (and (file-directory-p name)
|
||||
(not (member f exclude-list)))
|
||||
(add-to-list 'load-path name t) ;; append so shipped packages are loaded first
|
||||
(add-to-list 'load-path name nil) ;; no append so shipped packages are loaded first
|
||||
(when (member f include-list)
|
||||
(add-to-load-path-with-subdirs name exclude-list include-list))))))
|
||||
(add-to-load-path-with-subdirs (concat config-dir "lisp") '("." ".." "0patches") nil)
|
||||
|
||||
@@ -557,7 +557,7 @@ Suggest the URL title as a description for resource."
|
||||
(?2 :foreground "DarkOrange1")
|
||||
(?3 :foreground "yellow1")
|
||||
(?4 :foreground "green1")
|
||||
(?I :foreground "#df5f5f" :weight 'bold))) ))
|
||||
(?I :foreground "#df5f5f" :weight 'bold))) )) )
|
||||
|
||||
(use-package org-fragtog
|
||||
:hook (org-mode . org-fragtog-mode))
|
||||
|
||||
Reference in New Issue
Block a user