General Install
Download the .zip archive by following the Windows instructions on the GNU Software Website. I decided to go with the most recent version at this time for windows (emacs 26.3).
Move the .zip to wherever you would like to have emacs installed and extract all (either 7zip or the native windows unzip in file explorer will work)
Once emacs is unzipped, navigate to the
emacs-<version>/bin
directory in file explorer, copy the path (by clicking the the top bar and copying) so we can add it the the pathOpen up environment variables, find the system path environment variable (the ones on the bottom), click edit, then add, and finally paste the emacs path.
For easier access to open emacs, navigate back to the bin folder and find the
runemacs.exe
file; right click on it and select send to > desktop(create shortcut) and create a shortcut on your desktop to start emacs easily.
Congratulations Emacs is installed (and possibly ready to use?)
I'm am going to go a bit further and install spacemacs as the config because it gives a nice base to work off, provides easy extension points, and I personally prefer vim style navigation and editing as it is what I started on (as well as being easier on the wrist most of the time)
Install And Configure Spacemacs
Visit the Spacemacs website
If you have opened emacs, locate your
.emacs.d
file, which should live in%USERPROFILE%\appdata\roaming\.emacs.d
, and delete it. Back it up or add it to source control if you want it for future use.Run the following command, replacing %USERPROFILE% with the path to your appdata folder; In my case
C:\Users\zach\appdata\roaming
git clone https://github.com/syl20bnr/spacemacs C:\%USERPROFILE%\appdata\roaming\.emacs.d
This will put the spacemacs config in the .emacs.d folder.
Finally, open up emacs and run through configuration to get your preferences set up and installed.
From here, the Spacemacs docs give lots of ideas on how to customize and extend your editor and capabilities within emacs.
Useful links
Link To Original Post:
https://www.ballcapz.dev/blog/spacemacs-windows-install/
Top comments (1)
Thank you so much!