branch: elpa/spacemacs-theme
commit fd655a912c671f85f530411b73a9130b8e9efa00
Merge: fb2a88a604 8964145da9
Author: Nasser Alshammari <[email protected]>
Commit: GitHub <[email protected]>
Merge pull request #105 from jabranham/flymake
Add support for flymake errors, notes, and warnings
---
spacemacs-common.el | 11 +++++++++++
1 file changed, 11 insertions(+)
diff --git a/spacemacs-common.el b/spacemacs-common.el
index 41ee8416f8..152533d56e 100644
--- a/spacemacs-common.el
+++ b/spacemacs-common.el
@@ -372,6 +372,17 @@ to 'auto, tags may not be properly aligned. "
(:underline (:style line :color ,war)))
(,class (:foreground ,base :background ,war :inherit bold :underline
t))))
+;;;;; flymake
+ `(flymake-error ((,(append '((supports :underline (:style line))) class)
+ (:underline (:style line :color ,err)))
+ (,class (:foreground ,base :background ,err :inherit
bold :underline t))))
+ `(flymake-note ((,(append '((supports :underline (:style line))) class)
+ (:underline (:style wave :color ,keyword)))
+ (,class (:foreground ,base :background ,keyword :inherit
bold :underline t))))
+ `(flymake-warning ((,(append '((supports :underline (:style line))) class)
+ (:underline (:style line :color ,war)))
+ (,class (:foreground ,base :background ,war :inherit
bold :underline t))))
+
;;;;; jabber
`(jabber-activity-face ((,class (:inherit bold :foreground ,red))))
`(jabber-activity-personal-face ((,class (:inherit bold :foreground
,blue))))