It's a very simple task, really. But all my google results come up with complex solutions. I must be blind or going about this wrong. Anyway...
Here's what I want:
I want to split up my emacs configuration in the following structure:
.emacs.d/
init.el
custom1/
custom2/
I want init.el
to be as minimal as possible, just something that says "load all .el
files in custom1/
and custom2/
, recursively". Whenever I put a new file in any of those two directories I want it to automatically be loaded when emacs is started.
It seems simple and easy to me. But I fail at finding a simple solution.