TODO: description
-TODO: toc
+* Contents :toc_1:noexport:
+
+- [[#intro][Intro]]
+- [[#header][Header]]
+- [[#initial-setup][Initial setup]]
+- [[#config][Config]]
+- [[#footer][Footer]]
* Header
** Package management
-*** [[https://github.com/raxod502/straight.el][=straight.el=]]
+*** =straight.el=
#+begin_quote
Next-generation, purely functional package manager for the Emacs
(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