summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThanos Apollo <[email protected]>2023-08-28 19:06:25 +0300
committerThanos Apollo <[email protected]>2023-08-28 19:13:23 +0300
commitfc55f334592a4ae86baabb8d0171436615bb24d9 (patch)
treeabdd74d42979dca0b74fea98ee7f8f8a052327b2
parent25ed7f6a17344d319009eb36afd27cf6c990f4c0 (diff)
emacs: use gruvbox theme if is-hermes
-rwxr-xr-xemacs.org5
1 files changed, 4 insertions, 1 deletions
diff --git a/emacs.org b/emacs.org
index 78c52d1..748d659 100755
--- a/emacs.org
+++ b/emacs.org
@@ -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)