mode-icons/README.org

100 lines
4.2 KiB
Org Mode
Raw Normal View History

2015-12-21 11:26:39 +01:00
#+TITLE: mode-icons
#+DATE: Monday, Dec 21 2015
#+STARTUP: content
2013-06-02 14:14:58 +02:00
2015-12-21 11:26:39 +01:00
Show icons instead of mode names in emacs.
2013-06-02 14:14:58 +02:00
2015-12-21 11:26:39 +01:00
[[https://raw.githubusercontent.com/rhoit/mode-icons/dump/screenshots/screenshot01.png]]
2013-06-02 14:14:58 +02:00
2016-02-21 14:54:15 +01:00
Some of the modes that have icons instead of names now:
2013-06-02 14:14:58 +02:00
2015-12-22 04:17:09 +01:00
| Modes | icon |
|------------+--------------------------------------------------------------------------|
2015-12-23 11:06:49 +01:00
| Coffee | [[https://raw.githubusercontent.com/rhoit/mode-icons/dump/icons/coffee.png]] |
2015-12-22 04:17:09 +01:00
| CSS | [[https://raw.githubusercontent.com/rhoit/mode-icons/dump/icons/css.png]] |
| Emacs-Lisp | [[https://raw.githubusercontent.com/rhoit/mode-icons/dump/icons/emacs.png]] |
2015-12-23 11:06:49 +01:00
| Haml | [[https://raw.githubusercontent.com/rhoit/mode-icons/dump/icons/haml.png]] |
2015-12-22 04:17:09 +01:00
| HTML | [[https://raw.githubusercontent.com/rhoit/mode-icons/dump/icons/html.png]] |
| JS | [[https://raw.githubusercontent.com/rhoit/mode-icons/dump/icons/js.png]] |
| Lisp | [[https://raw.githubusercontent.com/rhoit/mode-icons/dump/icons/cl.png]] |
| Org-mode | [[https://raw.githubusercontent.com/rhoit/mode-icons/dump/icons/org.png]] |
| PHP | [[https://raw.githubusercontent.com/rhoit/mode-icons/dump/icons/php.png]] |
| Python | [[https://raw.githubusercontent.com/rhoit/mode-icons/dump/icons/python.png]] |
2015-12-23 11:06:49 +01:00
| Ruby | [[https://raw.githubusercontent.com/rhoit/mode-icons/dump/icons/ruby.png]] |
2015-12-22 04:17:09 +01:00
| SVG | [[https://raw.githubusercontent.com/rhoit/mode-icons/dump/icons/svg.png]] |
2015-12-23 11:06:49 +01:00
| Sass | [[https://raw.githubusercontent.com/rhoit/mode-icons/dump/icons/sass.png]] |
2015-12-22 04:17:09 +01:00
| Scheme | [[https://raw.githubusercontent.com/rhoit/mode-icons/dump/icons/scheme.png]] |
| Shell | [[https://raw.githubusercontent.com/rhoit/mode-icons/dump/icons/bash.png]] |
2015-12-23 11:06:49 +01:00
| Slim | [[https://raw.githubusercontent.com/rhoit/mode-icons/dump/icons/slim.png]] |
| YAML | [[https://raw.githubusercontent.com/rhoit/mode-icons/dump/icons/yaml.png]] |
2015-12-22 04:17:09 +01:00
* Requirements
As of version 0.3.0 you can also use icons from some icon fonts,
specifically:
- [[http://fontawesome.io/][Font Awesome]]
- [[https://octicons.github.com/][GitHub Octicons]]
- [[http://fizzed.com/oss/font-mfizz][Font Mfizz]]
- [[https://icomoon.io/#icons-icomoon][IcoMoon]]
The icons look the best if you have the fonts installed on your
system and mode-icons will not do this for you.
* Installation
** Manually
Place ~mode-icons.el~ somewhere in your =load-path= and copy the
~icons/~ directory there as well. Then =require= ~mode-icons~ in your
[[http://gnu.org/software/emacs][Emacs]] init file.
* Usage
Once installed you can add =(mode-icons-mode)= to your init file.
** Ignoring mode-icons in other buffers
When looking at buffers with commands like ~ibuffer~, they display the
icons for the mode names as well. If you don't like this behavior you
can change ~mode-icons-change-mode-name~ to be nil:
#+BEGIN_SRC emacs-lisp
(setq mode-icons-change-mode-name nil)
#+END_SRC
** Changing how mode-icons recolors images
2016-03-31 19:38:09 +02:00
Additionally, if the image icon was an ~xpm~ icon, then you can have
it changed to match your mode-line face. In the example below, the
inactive mode-line shows the emacs and yasnippet icon changed to match
the inactive mode-line:
[[http://i.imgur.com/QOM9wYM.png]]
This is enabled by default, and can be disabled by:
#+BEGIN_SRC emacs-lisp
(setq mode-icons-desaturate-inactive nil)
#+END_SRC
You can also change the icon to match the active mode line (disabled by default):
#+BEGIN_SRC emacs-lisp
(setq mode-icons-desaturate-active t)
#+END_SRC
Some of the black and white images are tagged as black and white and
are automatically recolored to match the mode-line face. You can turn this off
and use the black and white image by setting:
2013-06-02 14:14:58 +02:00
#+BEGIN_SRC emacs-lisp
(setq mode-icons-grayscale-transform nil)
#+END_SRC
** Making some icons display better
Some icons are derived from a font, and display better if you have the
font installed. Without the font they look a bit jagged (For example
the save icon, the spelling icon, etc)
[[http://i.imgur.com/zFNvAoz.png?1]]
Once the fonts are installed, the anti-aliasing makes the icons look better:
[[http://i.imgur.com/JkBMSPF.png]]