diff --git a/emacs/.config/doom/config.org b/emacs/.config/doom/config.org index b909dd8..45e198e 100644 --- a/emacs/.config/doom/config.org +++ b/emacs/.config/doom/config.org @@ -16,11 +16,13 @@ - [[#general-configuration][General Configuration]] - [[#user-information][User Information]] - [[#visual-settings][Visual Settings]] - - [[#org-mode][Org Mode]] - [[#multilanguage-spellcheck][Multilanguage Spellcheck]] - [[#latex][LaTeX]] - [[#set-pdf-viewer][Set PDF Viewer]] - [[#add-auto-compile-hook-for-tex-mode][Add auto-compile hook for TeX mode]] +- [[#org-mode][Org Mode]] + - [[#default-location][Default Location]] + - [[#enable-header-numbering][Enable Header Numbering]] * Config File Headers We start by simply defining the standard headers used by the three files. These headers come from the initial files generated by =doom install=, and contain either some Emacs-LISP relevant indicators like =lexical-binding=, or instructions about the contents of the file. @@ -387,12 +389,6 @@ Until I get used to the [[https://github.com/Greduan/emacs-theme-gruvbox][evil-s (setq display-line-numbers-type 'relative) #+end_src -** Org Mode -I would like to keep org at the default location -#+begin_src emacs-lisp :tangle config.el -(setq org-directory "~/org/") -#+end_src - * Multilanguage Spellcheck Enables use of multiple dictionaries. In my case German and English #+begin_src emacs-lisp :tangle config.el @@ -422,3 +418,12 @@ This function could also become useful if we ever want to extend the compile com #+end_src #+RESULTS: +* Org Mode +** Default Location +#+begin_src emacs-lisp :tangle config.el +(setq org-directory "~/org/") +#+end_src +** Enable Header Numbering +#+begin_src emacs-lisp :tangle config.el +(setq org-startup-numerated t) +#+end_src