https://github.com/flycheck/flycheck-color-mode-line
An Emacs minor-mode for Flycheck which colors the mode-line according to the Flycheck state of the current buffer.
https://github.com/flycheck/flycheck-color-mode-line
Last synced: 6 months ago
JSON representation
An Emacs minor-mode for Flycheck which colors the mode-line according to the Flycheck state of the current buffer.
- Host: GitHub
- URL: https://github.com/flycheck/flycheck-color-mode-line
- Owner: flycheck
- Created: 2013-05-02T03:08:58.000Z (about 13 years ago)
- Default Branch: master
- Last Pushed: 2023-01-06T18:29:03.000Z (over 3 years ago)
- Last Synced: 2025-01-18T16:49:27.281Z (over 1 year ago)
- Language: Emacs Lisp
- Size: 68.4 KB
- Stars: 61
- Watchers: 10
- Forks: 5
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
flycheck-color-mode-line.el
===========================
An Emacs minor-mode for [Flycheck][flycheck] which colors the mode line
according to the Flycheck state of the current buffer.
Installation
------------
If you choose not to use one of the convenient packages in [Melpa][melpa]
or [Marmalade][marmalade], you'll need to add the directory containing
`flycheck-color-mode-line.el` to your `load-path`.
Configuration
-------------
Put this code in your init file:
(require 'flycheck-color-mode-line)
(eval-after-load "flycheck"
'(add-hook 'flycheck-mode-hook 'flycheck-color-mode-line-mode))
Customization
-------------
The faces can be customized in the customization group `flycheck-faces`:
M-x customize-group
flycheck-faces
Examples
--------
Here are some screenshots with the different [Solarized themes][solarized]
and the [Powerline package][powerline].
**Solarized Light**



**Solarized Dark**



Thanks
------
- [Thomas Järvstrand][tjarvstrand] for the initial code from the excellent [EDTS mode][edts].
- [Sebastian Wiesner][lunaryorn] for flycheck and his awesome support.
[flycheck]: http://github.com/flycheck/flycheck
[melpa]: http://melpa.milkbox.net
[marmalade]: http://marmalade-repo.org
[solarized]: http://github.com/bbatsov/solarized-emacs
[powerline]: http://github.com/milkypostman/powerline
[tjarvstrand]: http://github.com/tjarvstrand
[edts]: http://github.com/tjarvstrand/edts
[lunaryorn]: http://github.com/lunaryorn