Skip to content

Commit

Permalink
Change default theme to my preferred dark theme
Browse files Browse the repository at this point in the history
See #424
  • Loading branch information
purcell committed Apr 11, 2017
1 parent f161043 commit 7940db0
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions lisp/init-themes.el
Expand Up @@ -2,7 +2,7 @@
(require-package 'color-theme-sanityinc-tomorrow)

;; If you don't customize it, this is the theme you get.
(setq-default custom-enabled-themes '(sanityinc-solarized-light))
(setq-default custom-enabled-themes '(sanityinc-tomorrow-bright))

;; Ensure that themes will be applied even if they have not been customized
(defun reapply-themes ()
Expand All @@ -21,12 +21,14 @@
(defun light ()
"Activate a light color theme."
(interactive)
(color-theme-sanityinc-solarized-light))
(setq custom-enabled-themes '(sanityinc-tomorrow-day))
(reapply-themes))

(defun dark ()
"Activate a dark color theme."
(interactive)
(color-theme-sanityinc-solarized-dark))
(setq custom-enabled-themes '(sanityinc-tomorrow-bright))
(reapply-themes))


(provide 'init-themes)

0 comments on commit 7940db0

Please sign in to comment.