From 7eaf22a32132f707368f57fed3bc0532378794ec Mon Sep 17 00:00:00 2001 From: luxick Date: Wed, 30 Sep 2020 15:00:49 +0200 Subject: [PATCH] Additional config for the modus theme --- README.org | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/README.org b/README.org index 59a48f3..a52aadc 100644 --- a/README.org +++ b/README.org @@ -160,10 +160,14 @@ Apply a nice looking theme. ;; Light Theme (use-package modus-operandi-theme) - ;; Syntax highlighing + ;; Configure modus theme (setq modus-operandi-theme-faint-syntax t) + (setq modus-operandi-theme-org-blocks 'rainbow) + (setq modus-operandi-theme-completions 'moderate) + (setq modus-operandi-theme-bold-constructs t) + (setq modus-operandi-theme-scale-headings t) - (load-theme 'modus-operandi t) + (load-theme 'modus-operandi t) #+END_SRC Set up the default frame look. @@ -186,6 +190,7 @@ Use a nice looking modeline package (use-package telephone-line) (telephone-line-mode 1) #+END_SRC + * Ivy Use Ivy to make minibuf promts better. Adds the ability to sort and filter. ** Use Ivy @@ -667,5 +672,5 @@ This file is specific to the machine emacs runs on. It conatins customizations and file locations that are machine dependend. #+BEGIN_SRC emacs-lisp (setq custom-file "~/.emacs.d/custom.el") - ;;(load custom-file 'noerror) + (load custom-file 'noerror) #+END_SRC