web-dev-qa-db-ja.com

Mac OS Xでの.emacsファイルの場所

私は.emacsファイルにgoogle goモジュールを追加しようとしています。これにより、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を実行しています。誰かが私にこれを機能させるのを手伝ってくれませんか?

18
user2895800

これをM-:(find-file user-init-file)で評価

Emacsは、ユーザー初期化ファイルと見なされるものを開きます。

私が持っています

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

これを.emacsに追加して、簡単に編集できるようにします。

17
p_wiersig

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まだ作成していない場合は作成します。

11
Drew