|
|
|
|
|
by edhebert
5296 days 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) |
|