my customization of used themes (nimbus-theme)

This commit is contained in:
Łukasz Pankowski 2017-11-19 01:05:59 +01:00
parent afae281d06
commit eebabd7dbf

View File

@ -196,11 +196,18 @@ Argument FRAMES has the same meaning as for `set-frame-font'"
(interactive "n[Go mono] size: ") (interactive "n[Go mono] size: ")
(set-frame-font (format "Go mono:pixelsize=%d:antialias=true:autohint=true" size) nil frames)) (set-frame-font (format "Go mono:pixelsize=%d:antialias=true:autohint=true" size) nil frames))
;; my customization of used themes
(eval-after-load 'firebelly-theme (eval-after-load 'firebelly-theme
'(custom-theme-set-faces '(custom-theme-set-faces
'firebelly 'firebelly
'(font-lock-comment-delimiter-face ((t (:foreground "#505050")))))) '(font-lock-comment-delimiter-face ((t (:foreground "#505050"))))))
(eval-after-load 'nimbus-theme
'(custom-theme-set-faces
'nimbus
'(region ((t (:background "#505050"))))))
(use-package powerline (use-package powerline
:ensure nil :ensure nil
:defer) :defer)