Fork me on GitHub
#emacs
<
2019-08-16
>
dmaiocchi15:08:11

I never did much with emacs-lisp before, time to fix the problem 🙂

dmaiocchi15:08:16

anyone knows a good site documentation for just reading about emacs-lisp? please don't say to me ltgoogle for you. If I'm asking here is for human experiences, if you know a site where you just read it about it. otherwise I will just search in the web 😁

dmaiocchi16:08:46

nob question in emacs: i have installed mu and mu4e. I have find out that the pkg emacs is installed here /usr/share/emacs/site-lisp/mu4e on Linux.

dmaiocchi16:08:03

how can I see from where Emacs load the pkgs dirs?

dmaiocchi16:08:28

I'm asking that because when I do m-x mu4e I can't find the pkg

dmaiocchi16:08:45

ok i solved with

(add-to-list 'load-path "/usr/share/emacs/site-lisp/")
(load "mu4e")
in my init.el. I didn't find out a cmd yet for listing my dirs of pkgs

dpsutton16:08:14

You should be able to just require it not load it and add it to your kid path

dmaiocchi16:08:49

ok thx @dpsutton I will try to require it