This is my emacs configuration. It contains:
- the init file
- some git submodules under
site-lisp/
- some additional local packages under
site-lisp/etc
.
To install everything just run the following commands:
git clone --recursive git@github.com:anantoni/dot-emacs.git
cd dot-emacs
make
To update an existing installation run the following commands:
git submodule update
make
The first time that emacs is executed (after installation via make
),
it will automatically download a list of modules from the repositories
listed in the init file. (This, however, requires the package-system
available for emacs versions ≥ 24.)
The list of modules that will be downloaded consist of:
- the prelude packages listed in prelude-packages.el
- the use-package entries marked for download (via the
:ensure t
option) in the init file.