emacs load-path

2011-12-02 Thread Nicolas Bercher
Something is driving me crazy as it seems to be so trivial. I have a bunch of .el files I'd like emacs to load on startup (emacs-22, Lenny). I saved them to ~/.emacs.d/elisp/: $ ls -l ~/.emacs.d/elisp/ total 8 -rwxr-xr-x 1 nbercher nbercher 496 déc 2 10:23 nb-org-mode.el -rwxr-xr-x 1

Re: emacs load-path

2011-12-02 Thread Alberto Luaces
Nicolas Bercher writes: Something is driving me crazy as it seems to be so trivial. I have a bunch of .el files I'd like emacs to load on startup (emacs-22, Lenny). I saved them to ~/.emacs.d/elisp/: $ ls -l ~/.emacs.d/elisp/ total 8 -rwxr-xr-x 1 nbercher nbercher 496 déc 2 10:23

Re: emacs load-path

2011-12-02 Thread Jude DaShiell
First make sure they'll load after running emacs and hitting meta-x and keying in the file names. Then read the original .el files for instructions. I expect you'll find code in them starting with (require that needs to be inserted in your .emacs file to have these load on start up. On Fri,

Re: emacs load-path

2011-12-02 Thread Nicolas Bercher
Jude DaShiell a écrit : First make sure they'll load after running emacs and hitting meta-x and keying in the file names. Then read the original .el files for instructions. I expect you'll find code in them starting with (require that needs to be inserted in your .emacs file to have these

Re: emacs load-path

2011-12-02 Thread Jude DaShiell
That's exactly correct.On Fri, 2 Dec 2011, Nicolas Bercher wrote: Jude DaShiell a ?crit : First make sure they'll load after running emacs and hitting meta-x and keying in the file names. Then read the original .el files for instructions. I expect you'll find code in them starting with

Re: emacs load-path

2011-12-02 Thread Alberto Luaces
Nicolas Bercher writes: Jude DaShiell a écrit : First make sure they'll load after running emacs and hitting meta-x and keying in the file names. Then read the original .el files for instructions. I expect you'll find code in them starting with (require that needs to be inserted in your