summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAmin Bandali <amin@aminb.org>2018-04-20 21:08:28 -0400
committerAmin Bandali <amin@aminb.org>2018-04-20 21:08:28 -0400
commit204986be04daf07b694937e372e94ba458374238 (patch)
tree11daea17eea237406b15a16bbe92a10e009d01ac
parentfd134a2b5330c76b04e8777a8dc001722c706a37 (diff)
downloadconfigs-204986be04daf07b694937e372e94ba458374238.tar.gz
configs-204986be04daf07b694937e372e94ba458374238.tar.xz
configs-204986be04daf07b694937e372e94ba458374238.zip
better backup settings
-rw-r--r--emacs/init.org13
1 files changed, 12 insertions, 1 deletions
diff --git a/emacs/init.org b/emacs/init.org
index db79586..b0570d3 100644
--- a/emacs/init.org
+++ b/emacs/init.org
@@ -91,7 +91,7 @@ Reset the variables back to default after init.
** Package management
-*** [[https://github.com/raxod502/straight.el][=straight.el=]]
+*** =straight.el=
#+begin_quote
Next-generation, purely functional package manager for the Emacs
@@ -189,6 +189,17 @@ it it's own file.
(load custom-file))
#+end_src
+** Backups
+
+Emacs' default backup settings aren't that great. Let's use more
+sensible options. See documentation for the ~make-backup-file~
+variable.
+
+#+begin_src emacs-lisp
+(setq backup-by-copying t
+ version-control t)
+#+end_src
+
** Org
#+begin_src emacs-lisp