summaryrefslogtreecommitdiff
path: root/README.org
diff options
context:
space:
mode:
Diffstat (limited to 'README.org')
-rw-r--r--README.org18
1 files changed, 17 insertions, 1 deletions
diff --git a/README.org b/README.org
index a465bdf..4647720 100644
--- a/README.org
+++ b/README.org
@@ -1,3 +1,4 @@
+
#+title: Emacs Config
#+property: header-args :tangle init.el
#+author: Dominik Kaiser
@@ -45,7 +46,9 @@
#+end_src
** Theme
#+begin_src elisp
- (load-theme 'wombat)
+ (use-package doom-themes
+ :config
+ (load-theme 'doom-solarized-dark t))
#+end_src
** Modeline
*** Doom modeline
@@ -91,3 +94,16 @@
:config
(setq which-key-idle-delay 0.3))
#+end_src
+* Org-mode
+** Visuals
+*** Block highlighting
+These settings ensure that block highlights aren't visible when collapsed.
+#+begin_src elisp
+ (custom-set-faces
+ '(org-block-begin-line ((t (:inherit default :background nil))))
+ '(org-block-end-line ((t (:inherit default :background nil)))))
+#+end_src
+*** Indentation
+#+begin_src elisp
+ (org-indent-mode 1)
+#+end_src