I am fairly new to Emacs and I have been trying to figure out how to change the default folder for C-x C-f on start-up. For instance when I first load Emacs and h
I think the line you need to add to your .emacs is is
(setq default-directory "C:/Documents and Settings/USER NAME/Desktop/" )
Emacs will start in your desktop that way, unless you have a file open. It will usually start in the same directory as the file in your current buffer otherwise.
The default folder is actually the same as the current working folder for the buffer, i.e. it can be different for every file you work with. Say that the file you are working with is located in C:\dir_a
, then the working directory for that buffer will by default be C:\dir_a
. You can change this with M-x cd
and type in whatever directory you would like to be the default instead (and by default I mean the one that will show up when you do C-x C-f
).
If you start emacs without opening a file, you will end up with the *scratch*
buffer open. If you started emacs from a Windows shortcut, the working directory will be the same as that specified in the shortcut properties. If you started it from the command line, it will be the directory from where you started it. You can still change this default directory with M-x cd
, also from the *scratch*
buffer.
Finally, you can do as Vadim suggests and put
(cd "c:/dir_a/")
in your .emacs
file, to make that directory the default no matter how you start emacs.
I've put
(cd "c:/cvsroot/")
in my .emacs and it did the job
To change default directory to DESKTOP in Dired and shell put this in your ~/.emacs:
;;This works for Windows XP.
(setq default-directory (concat "C:\Documents and Settings\MY_ACCOUNT\DESKTOP\"))
You didn't say so, but it sounds like you're starting Emacs from a Windows shortcut.
The directory that you see with c-x c-f is the cwd, in Emacs terms, the default-directory
(a variable).
When you start Emacs using an MS Windows shortcut, the default-directory
is initially the folder (directory) specified in the "Start In" field of the shortcut properties. Right click the shortcut, select Properties
, and type the path to your desktop in the Start In
field.
If you're using Emacs from the command line, default-directory
starts as the directory where you started Emacs (the cwd).
This approach is better than editing your .emacs file, since it will allow you to have more than one shortcuts with more than one starting directory, and it lets you have the normal command line behavior of Emacs if you need it.
CWD = current working directory = PWD = present working directory. It makes a lot more sense at the command line than in a GUI.