Variable: image-load-path
image-load-path is a customizable variable defined in image.el.gz.
Value
("/nix/store/y8rifw71hjgsl2qjn1l0vrwq2c3593aw-emacs-30-2/share/emacs/30.2/etc/images/"
data-directory load-path)
Documentation
List of locations in which to search for image files.
The images for icons shown in the tool bar are also looked up in these locations.
If an element is a string, it defines a directory to search. If an element is a variable symbol whose value is a string, that value defines a directory to search. If an element is a variable symbol whose value is a list, the value is used as a list of directories to search.
Subdirectories are not automatically included in the search.
Probably introduced at or before Emacs version 22.1.
Source Code
;; Defined in /usr/src/emacs/lisp/image.el.gz
(defcustom image-load-path
(list (file-name-as-directory (expand-file-name "images" data-directory))
'data-directory 'load-path)
"List of locations in which to search for image files.
The images for icons shown in the tool bar are also looked up
in these locations.
If an element is a string, it defines a directory to search.
If an element is a variable symbol whose value is a string, that
value defines a directory to search.
If an element is a variable symbol whose value is a list, the
value is used as a list of directories to search.
Subdirectories are not automatically included in the search."
:type '(repeat (choice directory variable))
:initialize #'custom-initialize-delay)