Customize edts face for on the fly syntax check (inherits from flycheck faces).

This commit is contained in:
syl20bnr 2013-04-22 13:03:35 -04:00
parent 49f5427f4b
commit 9aafc69e7e

View file

@ -1,3 +1,11 @@
(require 'edts-start)
;; (setq edts-log-level 'debug)
;; inherits faces from flycheck
(custom-set-faces
'(edts-face-error-line ((t (:inherit flycheck-error-face))))
'(edts-face-error-mode-line ((t (:inherit flycheck-error-face-mode-line))))
'(edts-face-warning-line ((t (:inherit flycheck-warning-face))))
'(edts-face-warning-mode-line ((t (:inherit flycheck-warning-face-mode-line))))
)