Use a different theme. Fix error in alchemist-company configuration

This commit is contained in:
Maciej 2018-01-28 23:05:28 +02:00
parent 979c0e8787
commit 8f565c11ee
Signed by: maciej
GPG key ID: 41D62D42D3B0D765
2 changed files with 11 additions and 3 deletions

View file

@ -19,6 +19,8 @@
(load-theme 'base16-mexico-light t t)
(load-theme 'base16-unikitty-light t t)
(load-theme 'base16-summerfruit-light t t)
(load-theme 'base16-material-darker t t)
(load-theme 'atom-one-dark t t)
(defun base16-harmonic-custom ()
"Additional configuration for Base 16 theme."
@ -38,11 +40,17 @@
(set-face-attribute 'linum nil :font "Hasklig 15"
:slant 'normal))
(defun base16-material-darker-custom ()
"Additional configuration for Base16 theme."
(set-face-attribute 'mode-line nil :font "Hasklig 15")
(set-face-attribute 'linum nil :font "Hasklig 15"
:slant 'normal))
(require 'helm-themes)
(if (display-graphic-p)
(progn
(enable-theme 'base16-not-harmonic)
(base16-harmonic-custom))
(enable-theme 'base16-material-darker)
(base16-material-darker-custom))
(progn
(color-theme-approximate-on)
(enable-theme 'flatui)))