To install:
make install
To download external packages:
make install-packages
I use ~/.emacs.d/init.d as main entry point for customization. That file load
another files in such order:
~/.emacs.d/.emacs-autogen~/.emacs.d/.emacs-pre.emacs-my. Will not be overridden on install.~/.emacs.d/my/loaddefs.el~/.emacs.d/.emacs-custom~/.emacs.d/.emacs-my~/.emacs.d/.emacs-post~/.emacs.d/.emacs-pre. Will not be overridden on install.my-org-dir controls location of Org root directory.
Define env var HOME like c:\home. Emacs will expand path element ~ to that
directory and some modes provide shortcuts for quick navigation to that
directory.
cygwin-mount.el teaches Windows Emacs to understand Cygwin paths.
In particular setting INFOPATH & MANPATH using Cygwin's convention allows to
read info and man pages from Windows Emacs!
Example of INFOPATH which works both in Cygwin and native Emacs:
INFOPATH=/cygdrive/c/home/usr/share/info:/usr/share/info:/usr/local/share/info:
Final sign : instructs Cygwin's built-in info viewer to include system paths
and native Emacs to include its own info pages.
Emacs's woman.el and Cygwin's man both understand following:
MANPATH=:/cygdrive/c/home/usr/share/man:/usr/share/man:/usr/local/share/man