Remove fringe bothersome borders, add desktop save

This commit is contained in:
Maciej Szlosarczyk 2017-08-26 00:00:11 +03:00
parent dcfe2e30d5
commit 99dddafe63
No known key found for this signature in database
GPG key ID: 0D4EEACF63D4262E
8 changed files with 84 additions and 83 deletions

View file

@ -47,12 +47,19 @@
(color-theme-approximate-on)
(enable-theme 'flatui)))
;; (color-theme-approximate-on)
;; Set font face
(set-face-attribute 'default nil :font "Hasklig 15")
(set-face-attribute 'helm-selection nil :font "Hasklig 15")
(set-face-attribute 'helm-header nil :font "Hasklig 17")
;; Remove ugly black line
(set-face-attribute 'vertical-border nil :foreground
(face-attribute 'fringe :background))
;; Set fringe colors to default, so it does not bother you.
(set-face-attribute 'fringe nil
:foreground (face-foreground 'default)
:background (face-background 'default))
(provide 'themes)
;;; themes.el ends here