Remove graphic check for color-theme

This commit is contained in:
Andreas Zweili 2022-04-27 22:51:57 +02:00
parent 71c1dc8d97
commit 4028f8713f
1 changed files with 1 additions and 2 deletions

View File

@ -287,7 +287,6 @@ which I store in my sourec directory as the current theme.
(add-hook 'after-make-frame-functions 'on-frame-open)
(when (boundp 'enable-color-theme)
(if (display-graphic-p)
;; load solarized color theme
(use-package solarized-theme
:ensure t
@ -296,7 +295,7 @@ which I store in my sourec directory as the current theme.
(setq solarized-scale-org-headlines nil)
(setq solarized-high-contrast-mode-line t)
(set-face-inverse-video 'region nil)
(load-theme 'solarized-light t))))
(load-theme 'solarized-light t)))
#+end_src
** smooth-scrolling