diff options
author | Thomas Voss <mail@thomasvoss.com> | 2023-08-20 16:52:22 +0200 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2023-08-20 16:52:22 +0200 |
commit | e200e09688f2275da1055b6f86c3d400bdf3257e (patch) | |
tree | d08fad486842dce6bd71518c221f5497835422df /.config/emacs/mango-theme.el | |
parent | d12432daa87300c98357d32ca65edaae3a73e5b8 (diff) |
emacs: Don’t theme TTYs
Typically themeing looks really gross in the TTY, and I would like to
just use the same color-scheme as my terminal anyways.
Diffstat (limited to '.config/emacs/mango-theme.el')
-rw-r--r-- | .config/emacs/mango-theme.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.config/emacs/mango-theme.el b/.config/emacs/mango-theme.el index 8f1bef0..af44903 100644 --- a/.config/emacs/mango-theme.el +++ b/.config/emacs/mango-theme.el @@ -43,7 +43,7 @@ graphically, so I shouldn’t need to have multiple specs per face. (declare (indent 0)) (let ((ret '('mango custom-theme-set-faces))) (dolist (spec body) - (add-to-list 'ret `(backquote ,(list (car spec) `((t ,(cdr spec))))))) + (add-to-list 'ret `(backquote ,(list (car spec) `((((type graphic)) ,(cdr spec))))))) (reverse ret))) (defconst mango-theme-palette |