1

Change theme to "Tomorrow Night"

This commit is contained in:
Jessie Hildebrandt 2018-07-13 23:04:45 -04:00
parent c121b610a6
commit f9589f3182

20
init.el
View File

@ -140,19 +140,9 @@
;; Style the mode line and turn off the toolbar when in graphical mode.
(if (display-graphic-p)
(progn
(set-face-attribute 'mode-line nil
:foreground "black"
:background "gray76"
:box '(:line-width -1 :color "azure4"))
(tool-bar-mode 0)
))
;; Load the "manoj-dark" default theme when in term mode.
(if (not (display-graphic-p) )
(progn
(load-theme 'manoj-dark)
))
;;====================
;; Package Manager
;;====================
@ -198,6 +188,16 @@
;;
;;========================================
;;====================
;; Themes
;;====================
;; Load "Tomorrow Night"
(use-package color-theme-sanityinc-tomorrow
:ensure t
:config
(load-theme `sanityinc-tomorrow-night t))
;;====================
;; Language Modes
;;====================