Mac OS X上我的.emacs文件在哪里

时间:2013-10-22 17:33:48

标签: macos emacs

所以我试图将google go模块添加到我的.emacs文件中,以便当我使用emacs编辑我的.go文件时,它会有相应的缩进和突出显示的单词。我看过网上,似乎我需要将以下代码片段添加到我的.emacs文件中(我找不到!)

;; go mode
(setq load-path (cons "/usr/local/go/misc/emacs" load-path))
(require 'go-mode-load)

我在我的.emacs.d /目录中放了go-mode-load.el和go-mode.el我相信我仍然需要找到.emacs文件来添加上面列出的代码我正在运行OS X如果这有帮助。有人可以帮我这个工作,谢谢你!

2 个答案:

答案 0 :(得分:16)

使用M-: (find-file user-init-file)

评估此事 然后, Emacs将打开它认为您的用户初始化文件。

我有

(global-set-key (kbd "<f12>") (lambda () (interactive) (find-file-other-window user-init-file)))

在我的.emacs中,以便我可以轻松编辑此内容。

答案 1 :(得分:11)

Emacs手册告诉您:

This file, if it exists, specifies how to initialize Emacs for you.
Emacs looks for your init file using the filenames `~/.emacs', `~/.emacs.el',
or `~/.emacs.d/init.el'; you can choose to use any one of these three
names.  Here, `~/' stands for your home directory.

我认为大多数人都使用~/.emacs。如果您还没有,请C-x C-f ~/.emacs创建它。