Skip to content

Commit

Permalink
Merge pull request #14 from thegeorgeous/change-flycheck-underline-style
Browse files Browse the repository at this point in the history
Change flycheck underline style to line from wave
  • Loading branch information
thegeorgeous authored Feb 1, 2018
2 parents bd6e385 + 06bbf9c commit 6312f01
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions railscasts-reloaded-theme.el
Original file line number Diff line number Diff line change
Expand Up @@ -135,10 +135,15 @@

;;;; flycheck
`(flycheck-info
((((supports :underline (:style wave)))
(:underline (:style wave :color ,railscasts-dark-green) :inherit unspecified))
((((supports :underline (:style line)))
(:underline (:style line :color ,railscasts-dark-green) :inherit unspecified))
(t (:foreground ,railscasts-dark-green :weight bold :underline t))))
`(flycheck-fringe-info ((t (:foreground ,railscasts-dark-green :weight bold))))
`(flycheck-warning
((((supports :underline (:style line)))
(:underline (:style line :color ,railscasts-orange) :inherit unspecified))
(t (:foreground ,railscasts-orange :weight bold :underline t))))


;;;; company
`(company-tooltip ((t (:foreground ,railscasts-fg :background ,railscasts-bg-2))))
Expand Down

0 comments on commit 6312f01

Please sign in to comment.