diff options
Diffstat (limited to 'guides/emacs/development.org')
| -rw-r--r-- | guides/emacs/development.org | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/guides/emacs/development.org b/guides/emacs/development.org index 143f102..9d05160 100644 --- a/guides/emacs/development.org +++ b/guides/emacs/development.org @@ -92,3 +92,18 @@ elpa_dirs = $(foreach d,$(elpa),$(call find-lib,$(d))) LOAD_PATH = $(addprefix -L ,$(elpa_dirs) $(sources)) #+end_src +*** load sources +~emacs -Q -L ./lisp~ does not seem to work: after running +~(package-initialize)~, =M-x find-library forge= returns the instance +installed under ~package-user-dir~. + +This can be circumvented with ~(setq pacakge-load-list '((forge nil) +all))~. + +Full command line for easy startup: + +#+begin_src sh +emacs -Q -L ./lisp \ + -eval "(setq pacakge-load-list '((forge nil) all))" \ + -f package-initialize \ +#+end_src |
