I am trying to install emacs prelude into emacs. The only thing I found after googling is this page, which tells me to clone prelude into
C:\Users\your_user_name\AppData\Roaming\.emacs.d
But I need to have prelude in the emacs system folder because I need to make my emacs folder a zip file and usable on other machines.
What I tried so far (unsuccessfully) are:
1. Download emacs 24.5.1 from gnu ftp site, and decompress to c:\emacs
2. git clone git://github.com/bbatsov/prelude.git
3. mv prelude/ /c/emacs/site-lisp
I thought step 3 should populate the emacs system-wide startup folder site-lisp
, and allow prelude to load on emacs startup. But it didn't happen. I loaded a Haskell .hs
file into emacs, and the Haskell mode isn't automatically activated as the prelude documentation suggests.
Can some one please explain how to correctly install prelude into emacs system-wide?
Thanks