summary refs log tree commit diff
path: root/config/init-file.el
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--config/init-file.el17
1 files changed, 6 insertions, 11 deletions
diff --git a/config/init-file.el b/config/init-file.el
index f8dadb1..d0e6da3 100644
--- a/config/init-file.el
+++ b/config/init-file.el
@@ -11,20 +11,15 @@
 
 (require 'init-util)
 
-(setq require-final-newline t)
+(use-package files
+  :custom
+  (require-final-newline t)
+  (auto-save-default nil)
+  (auto-save-list-file-prefix nil)
+  (backup-inhibited t))
 
 (setq bookmark-default-file (user-data "bookmarks"))
 
-;; Disable backup.
-(setq backup-inhibited t)
-
-;; Disable auto save.
-(setq auto-save-default nil)
-(setq auto-save-list-file-prefix nil)
-
-;; Really, no backups
-(setq make-backup-files nil)
-
 (use-package recentf
   :custom
   (recentf-max-saved-items 2000)