elisp-bug-hunter
elisp-bug-hunter copied to clipboard
Not compatible with borg package manager
I use the borg package manager and I need to call it's initialize function first thing so it adds all my packages to the load path.
Is there a way to specify a "preamble" that get's executed on every iteration of the bug hunter? E.g. I would need to always call this:
(setq user-init-file (or load-file-name buffer-file-name))
(setq user-emacs-directory (file-name-directory user-init-file))
(add-to-list 'load-path (expand-file-name "lib/borg" user-emacs-directory))
(require 'borg)
(borg-initialize)
Maybe slightly related is #11
Same for straight.el package manager too.