Ludovic Courtès (2015-11-15 20:41 +0300) wrote: > Alex Kost <[email protected]> skribis: > >> (add-to-list 'geiser-guile-load-path 'foo) errors if "geiser-guile.el" >> is not loaded yet, so I think it's better to put it inside >> 'with-eval-after-load', WDYT? > > Sounds good. I guess that’s because (require 'guix-init) doesn’t > require 'geiser?
"guix-init.el" shouldn't require geiser. IMO it should load as less code as possible, because it will increase the Emacs start time. In general I think requiring/loading packages is evil (as it slows down starting Emacs), so I avoid 'require'-s when possible in my init file. -- Alex
