diff options
author | noa@gaiwan.org | 2024-06-13 20:04:53 +0000 |
---|---|---|
committer | noa@gaiwan.org | 2024-06-13 20:04:53 +0000 |
commit | ecf9b08106cf8285b817434774dcd9c0aecf734e (patch) | |
tree | 714d4cd5e38323534c96685c4e30f2c07f831c3f /emacs/init.el | |
parent | b891c5ab049a9973b20a7e13d607314aa45b5c21 (diff) |
Alter some autosave configuration
Diffstat (limited to 'emacs/init.el')
-rw-r--r-- | emacs/init.el | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/emacs/init.el b/emacs/init.el index 00302b4..8497547 100644 --- a/emacs/init.el +++ b/emacs/init.el @@ -703,14 +703,17 @@ targets." ;;; saving ;; backups are pointless in long emacs sessions imo, but autosaves are useful +(setopt remote-file-name-inhibit-auto-save t) +(setopt remote-file-name-inhibit-auto-save-visited t) (setopt make-backup-files nil backup-by-copying t create-lockfiles nil auto-save-mode 1 - auto-save-interval 20 ;; every twenty keystrokes + auto-save-interval 6 ;; every six keystrokes auto-save-timeout 5 ;; every 5 seconds auto-save-default t auto-save-no-message t + save-silently t version-control t ;; this will auto save to the current file auto-save-visited-mode t) |