summaryrefslogtreecommitdiffstats
path: root/lisp/init-appearance.el
diff options
context:
space:
mode:
authorMartin Polden <martin.polden@gmail.com>2016-04-14 15:54:02 +0200
committerMartin Polden <martin.polden@gmail.com>2016-04-14 22:00:23 +0200
commit283df04220e2f1ac24ef2c4f878aaf48ca4fad31 (patch)
treecdb1254f26abc821866d5a4bedd05b7a27720ff8 /lisp/init-appearance.el
parent6a082b0c85a3666ff3ccfe29aae7392c275d0022 (diff)
Change theme
Diffstat (limited to 'lisp/init-appearance.el')
-rw-r--r--lisp/init-appearance.el9
1 files changed, 6 insertions, 3 deletions
diff --git a/lisp/init-appearance.el b/lisp/init-appearance.el
index 9ca7f13..8a30d95 100644
--- a/lisp/init-appearance.el
+++ b/lisp/init-appearance.el
@@ -23,9 +23,12 @@
(global-hl-line-mode 1))
;; set theme
-(use-package material-theme
- :if (display-graphic-p)
- :config (load-theme 'material t))
+(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))
;; highlight matching parentheses
(use-package paren