add toc
[~bandali/configs] / emacs / init.org
index db79586..e21b0bd 100644 (file)
@@ -5,7 +5,13 @@
 
 TODO: description
 
-TODO: toc
+* Contents                                                   :toc_1:noexport:
+
+- [[#intro][Intro]]
+- [[#header][Header]]
+- [[#initial-setup][Initial setup]]
+- [[#config][Config]]
+- [[#footer][Footer]]
 
 * Header
 
@@ -91,7 +97,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 +195,19 @@ 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
+
+* Config
+
 ** Org
 
 #+begin_src emacs-lisp