summaryrefslogtreecommitdiffstats
path: root/lisp/init-appearance.el
diff options
context:
space:
mode:
authorMartin Polden <martin.polden@gmail.com>2016-05-22 11:47:47 +0200
committerMartin Polden <martin.polden@gmail.com>2016-05-22 11:47:47 +0200
commit598dde5a5bc1e8ce6a5ea4e70ae4dc1805642b4a (patch)
treea42b3c14d1ea8cd6a72c3b5521f31c3904992087 /lisp/init-appearance.el
parent283df04220e2f1ac24ef2c4f878aaf48ca4fad31 (diff)
Use sanityinc-tomorrow-bright theme
Diffstat (limited to 'lisp/init-appearance.el')
-rw-r--r--lisp/init-appearance.el10
1 files changed, 4 insertions, 6 deletions
diff --git a/lisp/init-appearance.el b/lisp/init-appearance.el
index 8a30d95..897f2b1 100644
--- a/lisp/init-appearance.el
+++ b/lisp/init-appearance.el
@@ -23,12 +23,10 @@
(global-hl-line-mode 1))
;; set theme
-(when (display-graphic-p)
- (load-theme 'wombat t)
- ;; do not underline highlighted line
- (set-face-attribute hl-line-face nil :underline nil)
- ;; do not change foreground color for highlighted line
- (set-face-attribute 'highlight nil :foreground nil))
+(use-package color-theme-sanityinc-tomorrow
+ :if (display-graphic-p)
+ :config
+ (load-theme 'sanityinc-tomorrow-bright t))
;; highlight matching parentheses
(use-package paren