Add rainbow mode, change theme to base16 one

This commit is contained in:
Maciej Szlosarczyk 2017-05-25 16:51:46 +03:00
parent 07701fe20a
commit 5def2d993b
No known key found for this signature in database
GPG key ID: 0D4EEACF63D4262E
4 changed files with 61 additions and 14 deletions

View file

@ -1,9 +1,12 @@
;;; themes.el -- Summary
;;; Commentary:
;; (setq airline-helm-colors t)
;; (setq airline-cursor-colors t)
;; (setq airline-eshell-colors t)
;; Neotree theme
(setq neo-theme 'arrow)
;;; Code:
;; Add mode line icons items
;; (mode-icons-mode)
@ -12,31 +15,40 @@
(require 'smart-mode-line)
(setq sml/no-confirm-load-theme t)
(sml/setup)
(sml/apply-theme 'dark)
(sml/apply-theme 'respectful)
;; Display time on mode line
(setq display-time-format "%H:%M")
(display-time-mode t)
;; (load-theme 'ujelly t t)
(load-theme 'avk-daylight t t)
(load-theme 'monokai t t)
;; (load-theme 'avk-daylight t t)
;; (load-theme 'monokai t t)
;; (load-theme 'flatui t t)
(load-theme 'atom-one-dark t t)
;; (load-theme 'atom-one-dark t t)
(load-theme 'flatui t t)
(load-theme 'noctilux t t)
(load-theme 'whiteboard t t)
;; (load-theme 'noctilux t t)
;; (load-theme 'whiteboard t t)
;; (load-theme 'dichromacy t t)
(load-theme 'base16-harmonic-dark t t)
(require 'helm-themes)
(if (display-graphic-p)
(progn
(enable-theme 'flatui))
(enable-theme 'base16-harmonic-dark)
(set-face-attribute 'linum nil :font "Hasklig 14"
:slant 'normal
:background "#0b1c2c"))
(progn
(enable-theme 'flatui)))
;; (color-theme-approximate-on)
(set-face-attribute 'default nil :font "Hasklig 13")
(set-face-attribute 'mode-line nil :font "Hasklig 12")
(set-face-attribute 'linum nil :font "Hasklig 13")
;;; themes.el end here
;; Set font face
(set-face-attribute 'default nil :font "Hasklig 13")
(set-face-attribute 'mode-line nil :font "Hasklig 13")
(set-face-attribute 'helm-selection nil :font "Hasklig 13")
(set-face-attribute 'helm-header nil :font "Hasklig 15")
(provide 'themes)
;;; themes.el ends here