diff --git a/config.org b/config.org index 5262393..49d46d7 100644 --- a/config.org +++ b/config.org @@ -1,8 +1,7 @@ * Table of Contents :TOC: - [[#misc][Misc]] -- [[#appearance][Appearance]] +- [[#theme][Theme]] - [[#font][Font]] - - [[#theme][Theme]] - [[#line-numbers][Line numbers]] - [[#battery-indicator][Battery indicator]] - [[#programming][Programming]] @@ -28,7 +27,15 @@ Enable lexical binding, of course... (setq enable-dir-local-variables nil) #+END_SRC -* Appearance +* Theme + +A list of all doom themes can be found here: + +https://github.com/hlissner/emacs-doom-themes + +#+BEGIN_SRC emacs-lisp +(setq doom-theme 'doom-solarized-light) +#+END_SRC ** Font @@ -48,16 +55,6 @@ string. You generally only need these two: (font-spec :family "Input Mono Narrow" :size 12 :style 'regular)) #+END_SRC -** Theme - -A list of all doom themes can be found here: - -https://github.com/hlissner/emacs-doom-themes - -#+BEGIN_SRC emacs-lisp -(setq doom-theme 'doom-one) -#+END_SRC - ** Line numbers Possible values of =display-line-numbers-type= are =nil=, =t=, and ='relative=.