diff options
author | Alan Pearce | 2017-05-08 17:07:53 +0200 |
---|---|---|
committer | Alan Pearce | 2017-05-08 17:07:53 +0200 |
commit | 72551a93b109857bc9c2c044e253156ce90a75db (patch) | |
tree | e6c04d2781d3453346f73fee7740e8f199bc2a2a | |
parent | e71d8e38157f7952f6c70f1c43110d67799b3fe5 (diff) | |
download | dotfiles-72551a93b109857bc9c2c044e253156ce90a75db.tar.lz dotfiles-72551a93b109857bc9c2c044e253156ce90a75db.tar.zst dotfiles-72551a93b109857bc9c2c044e253156ce90a75db.zip |
Emacs: Try eziam-light-theme
-rw-r--r-- | emacs/.emacs.d/init.org | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/emacs/.emacs.d/init.org b/emacs/.emacs.d/init.org index eb5bd2b..e82c40e 100644 --- a/emacs/.emacs.d/init.org +++ b/emacs/.emacs.d/init.org @@ -152,6 +152,7 @@ Let’s try a basic theme. #+BEGIN_SRC emacs-lisp (use-package basic-theme :if (display-graphic-p) + :disabled t :config (progn (load-theme 'basic t) @@ -164,6 +165,17 @@ Let’s try a basic theme. (set-face-foreground 'window-divider "#a1b56c"))) #+END_SRC +Eziam looks nice, too + +#+BEGIN_SRC emacs-lisp +(use-package eziam-light-theme + :ensure eziam-theme + :defines (eziam-scale-headings) + :config (progn + (setq eziam-scale-headings nil) + (load-theme 'eziam-light t))) +#+END_SRC + Highlighting quasi-quoted expressions in lisps is quite useful, but I don't need it all the time. I'll keep it around for a while so that I can enable it if needed. |