Convert themes and flycheck to packages

This commit is contained in:
Maciej 2020-07-24 09:29:28 +03:00
parent 0974c0c86f
commit b1a6bb4290
Signed by: maciej
GPG key ID: 41D62D42D3B0D765
3 changed files with 22 additions and 8 deletions

View file

@ -1,3 +1,7 @@
;;; themes -- summary
;;; Commentary:
;;; Code:
;; Use smart-mode-line
(use-package smart-mode-line
:ensure t
@ -33,8 +37,8 @@
(random 2)
'(base16-atelier-forest-light base16-harmonic-light))))
(progn
(enable-theme 'base16-harmonic-light)
(setq base16-theme-256-color-source "base16-shell")))
(setq base16-theme-256-color-source "base16-shell")
(enable-theme 'base16-atelier-forest-light)))
;; Set font face
;;;;;;;;;;;;;;;;;;;;;; Font configuration ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
@ -54,3 +58,6 @@
(set-face-attribute 'fringe nil
:foreground (face-foreground 'default)
:background (face-background 'default))
(provide 'themes)
;;; themes.el ends here