From 3f4d3929e38ae1f57be6aa1b023834f5c1d473e1 Mon Sep 17 00:00:00 2001 From: Camden Dixie O'Brien Date: Fri, 1 Jan 2021 00:00:30 +0000 Subject: [PATCH] Move "Start up" section to nearer the start It just makes sense. --- config.org | 33 +++++++++++++++++---------------- 1 file changed, 17 insertions(+), 16 deletions(-) diff --git a/config.org b/config.org index 2bc9628..2eff557 100644 --- a/config.org +++ b/config.org @@ -173,6 +173,23 @@ needs to be set up to install them if they aren't already. (setcdr (assoc "\\.pdf\\'" org-file-apps) "mupdf %s"))) #+end_src +* Start up + + Org is better suited as scratch space than Funamental, I'd say. + + #+begin_src emacs-lisp + (setq initial-major-mode 'org-mode) + (setq initial-scratch-message "") + #+end_src + + I always want [[file:~/exo/index.org][~/exo/index.org]] to open on start-up, as that's where I + keep links to whatever I happen to be doing at any given time; one + does that by setting [[help:initial-buffer-choice][initial-buffer-choice]] + + #+begin_src emacs-lisp + (setq initial-buffer-choice "~/exo/index.org") + #+end_src + * Magit =magit= is truly a wonderful creation! Only deviations from defaults @@ -362,19 +379,3 @@ needs to be set up to install them if they aren't already. '(newsticker-download-enclosures)) #+end_src -* Start up - - Org is better suited as scratch space than Funamental, I'd say. - - #+begin_src emacs-lisp - (setq initial-major-mode 'org-mode) - (setq initial-scratch-message "") - #+end_src - - I always want [[file:~/exo/index.org][~/exo/index.org]] to open on start-up, as that's where I - keep links to whatever I happen to be doing at any given time; one - does that by setting [[help:initial-buffer-choice][initial-buffer-choice]] - - #+begin_src emacs-lisp - (setq initial-buffer-choice "~/exo/index.org") - #+end_src