Quantcast
Channel: Linux and Mac Hacks
Viewing all articles
Browse latest Browse all 39

Emacs: Permanently stop creating backup files and auto-save

$
0
0
In case you ever wanted to permanently stop creating backup emacs files (the ones with ~ at the end of the filename) add the following to your .emacs file:

(setq backup-inhibited t)

and/or disable the auto-saves add the following to your .emacs:

(setq auto-save-default nil)

Viewing all articles
Browse latest Browse all 39

Trending Articles