diff options
-rwxr-xr-x | emacs.org | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -146,7 +146,10 @@ Fonts and basic appearance settings for each device #+end_src ** Theme #+begin_src emacs-lisp - (load-theme 'doom-monokai-classic) + (if is-hermes + (load-theme 'doom-gruvbox) + (load-theme 'doom-monokai-classic)) + (doom-modeline-mode 1) (setq doom-modeline-height 35) |