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/ 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:
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. |
||
|
|
|
|
On my Vista box it's in |
||
|
|
|
|
On XP it's: C:\Documents and Settings\yourusernamehere\Application Data\ |
||
|
|
|
|
|
||
|
|
|
|
It should be stored in the variable user-init-file. use C-H v user-init-file RET to check |
||
|
|
|
|
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. |
||
|
|
