From fc4f5dedfd80e28101081f9f489024bc5e3bdb44 Mon Sep 17 00:00:00 2001 From: Dominik Kaiser Date: Sun, 9 Feb 2025 16:30:24 +0100 Subject: Setup doom themes and some org-mode visuals --- README.org | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) (limited to 'README.org') 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 -- cgit v1.2.3