Download emacs-w64 and extract somewhere, e.g. a tools
or apps
folder like C:\Users\<user>\tools\emacs
.
Emacs and many other applications store its configuration in the user's "home" folder. Translated directly from the Unix world, that is %UserProfile%
(C:\Users\<user>
), but Windows prefers %AppData%
instead (C:\Users\<user>\AppData\Roaming
).
For simplicity's sake, override this by specifying the HOME
environment variable explicitly. Emacs and some other applications (e.g. MinGW) lets this override the default.
I recommend setting HOME
to %UserProfile%
, and installing Spacemacs there. This is not what Microsoft/Windows recommends, but it works unless you want to use a "roaming" profile.
Note that this could mean that you must copy configuration files for other applications from %AppData%
to %UserProfile%
.
Open a command prompt and install Spacemacs:
cd %HOME%
git clone https://github.com/syl20bnr/spacemacs .emacs.d
Spacemacs uses the font Source Code Pro by default, which can be downloaded from Google Fonts. Extract the TTF files, select them in Explorer, right-click and select "Install".
Alternatively, use another font by editing your .spacemacs
file:
dotspacemacs-default-font '("Consolas"
Install some dependencies via Chocolatey:
- The Platinum Searcher (pt)
diff
zip
(e.g. for exporting to OpenDocument files)
choco install pt diffutils zip
(Note that the font Source Code Pro is also available via Chocolatey, but it didn't work as well as installing it manually from Google Fonts.)
Emacs is an oddball on Windows, but you can make it work with a few environment variables:
Variable | Value |
---|---|
HOME |
%UserProfile% |
EMACS_SERVER_FILE |
%HOME%\.emacs.d\server\server |
ALTERNATE_EDITOR |
The full path to emacs\bin\runemacs.exe (including the filename) |
They are not always necessary, but unless you set them, Emacs will behave strangely from time to time.
Create a start menu shortcut in %AppData%\Microsoft\Windows\Start Menu
with this "Target": %ALTERNATE_EDITOR%
(which points to runemacs.exe
from above).
You can set "Start in" to a folder where you keep most of your documents or files, for convenience.
Start Emacs and right-click the icon in the task bar and "pin it". Then right-click the icon again, and right-click the Emacs icon in the popup menu and select Properties.
Change the "Target" filename to runemacs.exe
, and change the "Start in" to a folder where you keep most of your documents or files, for convenience.
Right-click a file that you want to open with Emacs, and select Open With, Choose another app, then Look for another app on this PC. Navigate to emacs\bin\emacsclientw.exe
and select it.
Then, open the Registry Editor and edit the default string value in HKEY_CURRENT_USER\Software\Classes\Applications\emacsclientw.exe\shell\open\command
. Insert the -n
option between emacsclientw.exe
and "%1"
. (This will avoid the question "This Emacs session has clients; exit anyway?" when exiting.)
Emacs will not work well if your paths contain non-ASCII characters, either in your environment variables, or the paths to the files that you open.
If e.g. your username, like mine, contains non-ASCII characters, a simple workaround is to create a directory junction with ASCII only. Open a command prompt as Administrator.
cd \Users
mklink /j Andre André
This example lets you use C:\Users\Andre
interchangeably with C:\Users\André
.
Open a command prompt and pull the latest Spacemacs:
cd %AppData%\.emacs.d
git pull
Restart Emacs.
Hi! Thanks for this guide. I would just like to comment that I have tried to get Emacs on windows in 3 different ways:
Your way (described here): things worked differently than on GNU/linux (i.e. the package manager chocolatey. I was not aware of chocolatey, but I wonder if it provides e.g. djvulibre for djvu mode). I don't remember exactly, but I do remember that getting pdf-tools to work, and installing an alternative for the
locate
command took all quite some extra work.Then I tried several the VM approaches (i.e. hyper V and Virtualbox). For that hyper V was a pain(/was impossible to make it interoperate/communicate with Windows).
Virtualbox worked great, but was slow and my CPU was constanly above 90%.
Finally I tried with WSL(1 and 2) i.c.w. the
vcxsrv
x-server using this guide. Installation was a breeze, everything works very fast and exactly like on real linux (pdf-tools and djvu-mode work exactly like on linux). Interoperability is perfect (copy paste and reading windows folder from Emacs etc.). Therefore I would really recommend to go for the WSL approach.