Languages: English / 日本語
Accelerates locate-library, require, and load by pre-building a
symbol-property index of all files on load-path.
async-installer — a small, non-blocking package manager for Emacs. Pure Elisp syntax — no macro DSL required.
(async-installer-git-add "https://github.com/zawatton/my-locate-library.git"
:branch "master"
:main "my-locate-library.el")(straight-use-package
'(my-locate-library :type git :host github :repo "zawatton/my-locate-library"))(elpaca (my-locate-library :host github :repo "zawatton/my-locate-library"));; with straight
(use-package my-locate-library
:straight (my-locate-library :type git :host github :repo "zawatton/my-locate-library"))
;; with elpaca
(use-package my-locate-library
:ensure (:host github :repo "zawatton/my-locate-library"))(add-to-list 'load-path "/path/to/my-locate-library")
(require 'my-locate-library);; After load-path is finalized:
(my-locate-library-build)
(my-locate-library-enable)
;; If load-path changes later:
(my-locate-library-rebuild)
;; To revert to original functions:
(my-locate-library-disable)GPL-3.0. See LICENSE.