Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I tried looking for the .emacs file for my Windows install for Emacs but could not find it. Does it have the same filename under Windows as in Unix? Do I have to create it myself? If so, under what specific directory does it go?

share|improve this question

9 Answers

up vote 35 down vote accepted

Copy'n'paste from the emacs FAQ: http://www.gnu.org/software/emacs/windows/

Where do I put my init file?

On Windows, the .emacs file may be called _emacs for backward compatibility with DOS and FAT filesystems where filenames could not start with a dot. Some users prefer to continue using such a name, because Explorer cannot create a file with a name starting with a dot, even though the filesystem and most other programs can handle it. In Emacs 22 and later, the init file may also be called .emacs.d/init.el. Many of the other files that are created by lisp packages are now stored in the .emacs.d directory too, so this keeps all your Emacs related files in one place.

All the files mentioned above should go in your HOME directory. The HOME directory is determined by following the steps below:

  1. If the environment variable HOME is set, use the directory it indicates.
  2. If the registry entry HKCU\SOFTWARE\GNU\Emacs\HOME is set, use the directory it indicates.
  3. If the registry entry HKLM\SOFTWARE\GNU\Emacs\HOME is set, use the directory it indicates. Not recommended, as it results in users sharing the same HOME directory.
  4. If C:\.emacs exists, then use C:/. This is for backward compatibility, as previous versions defaulted to C:/ if HOME was not set.
  5. Use the user's AppData directory, usually a directory called Application Data under the user's profile directory, the location of which varies according to Windows version and whether the computer is part of a domain.

Within Emacs, ~ at the beginning of a file name is expanded to your HOME directory, so you can always find your .emacs file with C-x C-f ~/.emacs.

share|improve this answer
Or you may need to find with C-x C-f ~/_emacs (instead of the period). Using the underscore for your init is common (and suggested) practice for both Vim and Emacs. – labyrinth Jan 26 '12 at 23:41

Open the file like this in Emacs for Windows:

C-x C-f ~/.emacs

More information in the Emacs Wiki

share|improve this answer
3  
And then click File > Open File... or Save As... to see where ~/ is in a familiar Windows Open dialog. – Yoo Feb 2 '11 at 3:16

It should be stored in the variable user-init-file.

use C-H v user-init-file RET

to check

share|improve this answer

On my Vista box it's in C:\Users\<USER>\AppData\Roaming\

share|improve this answer

On versions of emacs on windows above 22, it seems to have moved to

~/.emacs.d/init.el

, ~ being the value of your environment variable HOME (see Control Panel -> System -> Advanced -> Environment variables).

The file itself might not exist, in that case just create it.

share|improve this answer

on emacs 23 and Windows7 only works if you set:

HKCU\SOFTWARE\GNU\Emacs\HOME

share|improve this answer
Finally I found this! Thanks! – Chris Dec 21 '11 at 22:11
Finally I found this! Me too! – lowerkey Mar 28 at 14:50

On XP it's:

C:\Documents and Settings\yourusernamehere\Application Data\

share|improve this answer

I've found that Emacs 22 will occasionally open either "C:\Documents and Settings\username\Application Data\.emacs", or just "C:\Documents and Settings\username\.emacs" on my XP machine. I haven't found an explanation for why it occasionally changes it's mind.

~ will always point to whatever the current instance of emacs thinks is HOME, but kanja's tip (C-h v user-init-file) will always tell you what ~/.emacs actually maps to.

share|improve this answer
I've now noticed that Windows will set the HOME environment variable differently, depending on how I start runemacs.exe. If I start it from within the Explorer, HOME is set to C:\Documents and Settings\username, but if I start it from the Start Menu, HOME is C:\Documents and Settings\username\Application Data. Strange. – remicles2 Dec 7 '10 at 21:37

As kanja answered, the path to this file is stored in the user-init-file variable (or if no init file exists, the variable contains the default value for where to create it).

So regardless of which of the possible init file names you are using, and which directory it is in, you should be able to visit your init file with:

M-: (find-file user-init-file) RET

Or display its full path in the echo area with:

M-: (expand-file-name user-init-file) RET

share|improve this answer
my user-init-file is nil, so it doesn't work. – sam boosalis Aug 8 '12 at 19:44
sam: I'm pretty sure that shouldn't happen unless you're passing --no-init-file (or an argument which incorporates that) ? – phils Aug 8 '12 at 20:19

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.