问题描述
我在 c:/emacs-23.3 中安装了 emacs 23.3.1.按照此页面中的提示,我更新了site-start.el 设置 HOME 环境变量.
I installed emacs 23.3.1 in c:/emacs-23.3.Following the hints in this page, I updated the site-start.el to set HOME environment variable.
(setenv "HOME" "c:/users/USER/emacs")
我制作了 c:/users/USER/.emacs(就像我在 unix/mac 中所做的那样)来编写使用 slime 的代码,但它似乎没有正确启动 slime.
And I made c:/users/USER/.emacs (like I did in unix/mac) to write the code for using slime, but it doesn't seem to start slime correctly.
这是在 Windows 7 中设置 emacs 的正确方法吗?我把 .emacs 文件放在哪里?
Is this a correct way of setting emacs in Windows 7? Where do I put the .emacs file?
推荐答案
您需要在计算机设置中的环境变量中设置 HOME
(如果我没记错的话),或者将 init 文件放在默认目录中(只需启动 Emacs,然后按 Cx Cf ~/
以查看实际目录是什么).我记得,在 Windows 上,init 文件可以被称为 _emacs
...
You need to set HOME
in environment variables in Computer settings (if I remember correctly), or put init file to default directory (just start Emacs, and press C-x C-f ~/
to see what is actual directory).And as I remember, on Windows, init file could be called _emacs
...
这篇关于Windows 7 中的主目录和 .emacs 文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!