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?
|
Copy'n'paste from the emacs FAQ: http://www.gnu.org/software/emacs/windows/ Where do I put my init file?On Windows, the All the files mentioned above should go in your HOME directory. The HOME directory is determined by following the steps below:
Within Emacs, |
||||
|
|
|
|||||
|
|
It should be stored in the variable user-init-file. use C-H v user-init-file RET to check |
|||
|
|
|
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. |
|||
|
|
|
on emacs 23 and Windows7 only works if you set: HKCU\SOFTWARE\GNU\Emacs\HOME |
|||
|
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. |
|||
|
|
As kanja answered, the path to this file is stored in the 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-: Or display its full path in the echo area with: M-: |
|||||
|