LoginSignup
16
15

More than 5 years have passed since last update.

emacsでバックアップファイルを作らない。

Posted at

要件

emacsでファイルを作成→編集→保存した際に*.~みたいなバックアップファイルを生成しないようにする

参考
emacsでバックアップファイルを作らないようにする方法

手順

前提
emacsがインストールされている
ホームディレクトリ(~/以下)に.emacsファイルがある。
→なければ、新しく.emacs ファイルを作成する。

以下を.emacs ファイルに追記

;;; *.~ とかのバックアップファイルを作らない
(setq make-backup-files nil)
;;; .#* とかのバックアップファイルを作らない
(setq auto-save-default nil)

これで作成されなくなる。
はず。

16
15
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
16
15