3
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

.emacs 内に custom-set-variables や custom-set-faces が自動的に書き込まれるのを防ぐ

Posted at

.emacs や .emacs.d/init.el に以下のような記述が勝手に書き込まれることがあると思います。

(custom-set-variables
 ;; custom-set-variables was added by Custom.
 ;; If you edit it by hand, you could mess it up, so be careful.
 ;; Your init file should contain only one such instance.
 ;; If there is more than one, they won't work right.
 '(package-selected-packages
   '(magit compat rust-mode racket-mode slime newlisp-mode d-mode janet-mode use-package)))
(custom-set-faces
 ;; custom-set-faces was added by Custom.
 ;; If you edit it by hand, you could mess it up, so be careful.
 ;; Your init file should contain only one such instance.
 ;; If there is more than one, they won't work right.
 )

これを別ファイルに書き込まれるようにしたい場合には以下のような記述を .emacs or .emacs.d/init.el に入れると良いです。

.emacs or .emacs.d/iniit.el
(setq custom-file "~/.emacs.d/custom.el")
(condition-case nil
    (load custom-file)
  (error nil))

custom.el を .emacs.d の中に入れたくない場合は、以下のようにします。

.emacs or .emacs.d/iniit.el
(setq custom-file "~/custom.el")
(condition-case nil
    (load custom-file)
  (error nil))
  • .emacs を git 等で管理しているときに、他のPCの .emacs 内の custom-set-variables や custom-set-faces と衝突してしまうのを回避することができるようになります。custom.el は .gitignore などでバージョン管理対象から外しておくといいでしょう。

  • ちなみに、(load custom-file)condition-case で囲んでいるのは、custom.el がまだ作られてない時にエラーになるのを無視するためです。

それでは!

3
6
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?