We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d901b1f commit bc520a4Copy full SHA for bc520a4
sanemacs.el
@@ -1,5 +1,5 @@
1
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2
-;;; Sanemacs version 0.0.5 ;;
+;;; Sanemacs version 0.0.6 ;;
3
4
5
;;; Disable menu-bar, tool-bar, and scroll-bar
@@ -37,6 +37,16 @@
37
(write-region "" nil custom-file))
38
(load custom-file)
39
40
+;;; Avoid littering the user's filesystem with backups
41
+(setq
42
+ backup-by-copying t ; don't clobber symlinks
43
+ backup-directory-alist
44
+ '((".*" . "~/.emacs.d/saves/")) ; don't litter my fs tree
45
+ delete-old-versions t
46
+ kept-new-versions 6
47
+ kept-old-versions 2
48
+ version-control t) ; use versioned backups
49
+
50
;;; Utility functions
51
(defun sanemacs--package-get-dependencies (pkg-to-check)
52
(setq listofdepends nil)
0 commit comments