Move "Start up" section to nearer the start

It just makes sense.
This commit is contained in:
Camden Dixie O'Brien 2021-01-01 00:00:30 +00:00
parent f9dfef7c24
commit 3f4d3929e3

View File

@ -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