Add support for ERC

* User input is faded in order to focus on messages by others
* Keywords are same color as matched parens
* Nicks of others are unbolded cyan
* Server notices are unbolded blue
* Timestamps are faded, not bright

Looks best with the solarized-dark theme.
This commit is contained in:
Michael Olson 2012-12-04 15:57:24 -08:00
parent 9a0019332c
commit cb7ebc852d
1 changed files with 7 additions and 0 deletions

View File

@ -502,6 +502,13 @@ the \"Gen RGB\" column in solarized-definitions.el to improve them further."
(rcirc-bright-nick ((t (:foreground ,magenta))))
(rcirc-server ((t (:foreground ,base1))))
(rcirc-timestamp ((t (:foreground ,base01))))
;; ERC
(erc-input-face ((t (:foreground ,base01))))
(erc-keyword-face ((t (,@fmt-bold ,@fg-cyan ,@bg-base02))))
(erc-my-nick-face ((t (:foreground ,blue))))
(erc-nick-default-face ((t (,@fmt-none ,@fg-cyan))))
(erc-notice-face ((t (,@fmt-none ,@fg-blue))))
(erc-timestamp-face ((t (:foreground ,base01))))
;;font-latex
(font-latex-warning-face ((t (,@fg-red))))
(font-latex-sectioning-5-face ((t (,@fg-violet))))