So I need to explicitly call (package-initialize) in init.el, probably one of the, if not the, first line?


On Mon, Jun 9, 2014 at 7:59 PM, Alexis <flexibeast@gmail.com> wrote:

psycho_punch writes:

> I've defined my initialization script in ~/.emacs.d/init.el; I'm not sure
> if it matters. So since 'ox-publish doesn't get loaded until after
> initialization, I defined:
>
> (add-hook 'after-init-hook (lambda() (load-file
> "/path/to/org-publish-project.el")))
>
> I'm wondering when do the packages installed via package-install get
> loaded...

They get loaded when (package-initialize) is called in one's
initialisation file(s).


Alexis.