summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAmin Bandali <amin@aminb.org>2018-04-21 20:17:08 -0400
committerAmin Bandali <amin@aminb.org>2018-04-21 20:17:08 -0400
commit056eba24a096c9e6ea355936063d5f60741265e3 (patch)
treebaa2cad65ed1cbbd6543e838cdf42eaa8bb6758a
parent1446ab91e68b8e0d2d36ccccc5a3f7432c3e6937 (diff)
downloadconfigs-056eba24a096c9e6ea355936063d5f60741265e3.tar.gz
configs-056eba24a096c9e6ea355936063d5f60741265e3.tar.xz
configs-056eba24a096c9e6ea355936063d5f60741265e3.zip
[emacs] add Core to the TOC, move the backups section to core
-rw-r--r--emacs/init.org23
1 files changed, 12 insertions, 11 deletions
diff --git a/emacs/init.org b/emacs/init.org
index 454766c..388a4e2 100644
--- a/emacs/init.org
+++ b/emacs/init.org
@@ -10,6 +10,7 @@ TODO: description
- [[#intro][Intro]]
- [[#header][Header]]
- [[#initial-setup][Initial setup]]
+- [[#core][Core]]
- [[#config][Config]]
- [[#footer][Footer]]
@@ -252,17 +253,6 @@ See [[https://www.gnu.org/software/emacs/manual/html_node/emacs/Emacs-Server.htm
(server-start))
#+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
-
* Core
:PROPERTIES:
:CUSTOM_ID: core
@@ -335,6 +325,17 @@ visiting a file). Borrowed from Emacs Prelude.
"%b"))))
#+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
:PROPERTIES:
:CUSTOM_ID: config