9 ms·
If backup files are giving you an issue, you can change the behavior of emacs so that it saves backup files in a separate directory, instead of the alongside th
by edhebert 15y ago
If backup files are giving you an issue, you can change the behavior of emacs so that it saves backup files in a separate directory, instead of the alongside the file that is being edited.
(setq backup-directory-alist `(("." . "~/saves")))
(setq tramp-backup-directory-alist backup-directory-alist)
(setq backup-by-copying t)