diff options
author | Thanos Apollo <[email protected]> | 2023-08-28 19:06:25 +0300 |
---|---|---|
committer | Thanos Apollo <[email protected]> | 2023-08-28 19:13:23 +0300 |
commit | fc55f334592a4ae86baabb8d0171436615bb24d9 (patch) | |
tree | abdd74d42979dca0b74fea98ee7f8f8a052327b2 /emacs.org | |
parent | 25ed7f6a17344d319009eb36afd27cf6c990f4c0 (diff) |
emacs: use gruvbox theme if is-hermes
Diffstat (limited to 'emacs.org')
-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) |