spacemacs/layers/+themes/colors/README.org

107 lines
3.5 KiB
Org Mode
Raw Normal View History

#+TITLE: Colors layer
2015-06-10 16:44:30 +00:00
[[file:img/rainbow_dash.png]]
2016-03-31 02:59:55 +00:00
* Table of Contents :TOC_4_gh:noexport:
- [[#description][Description]]
- [[#install][Install]]
- [[#enable-rainbow-identifiers][Enable rainbow-identifiers]]
- [[#enable-nyan-cat][Enable Nyan cat]]
- [[#key-bindings][Key bindings]]
- [[#rainbow-identifiers][Rainbow Identifiers]]
- [[#rainbow-mode][Rainbow Mode]]
- [[#nyan-mode][Nyan Mode]]
2015-06-10 16:44:30 +00:00
* Description
This layer colors your life with:
- [[https://github.com/Fanael/rainbow-identifiers][rainbow identifiers]] mode will colorize each variables and functions with an
almost unique color. The keywords and the declaration of function colors are
disabled in order to make the colorized variables and functions stand out.
- [[https://julien.danjou.info/projects/emacs-packages][rainbow mode]] displays strings representing colors with the color they
represent as background.
- [[https://github.com/syl20bnr/nyan-mode][nyan mode]] display a Nyan cat progress bar in the mode-line.
2015-06-10 16:44:30 +00:00
* Install
To use this configuration layer, add it to your =~/.spacemacs=. You will need to
add =colors= to the existing =dotspacemacs-configuration-layers= list in this
file.
2015-06-10 16:44:30 +00:00
** Enable rainbow-identifiers
2016-06-04 02:27:48 +00:00
To enable =rainbow-identifiers-mode= by default in programing language buffers,
set the variable =colors-enable-rainbow-identifiers-by-default= to =t=:
2015-06-10 16:44:30 +00:00
#+BEGIN_SRC emacs-lisp
(setq-default dotspacemacs-configuration-layers '(
(colors :variables colors-enable-rainbow-identifiers-by-default t)))
2015-06-10 16:44:30 +00:00
#+END_SRC
Saturation and lightness of identifiers can be set per theme by adding
an entry in the variable =colors-theme-identifiers-sat&light=. This
is an alist where the key is a theme symbol and the value is a pair
=(saturation lightness)=.
Example:
#+BEGIN_SRC emacs-lisp
(push '(mytheme . (50 50)) colors-theme-identifiers-sat&light)
#+END_SRC
** Enable Nyan cat
To enable the package =nyan-mode= set the variable
=colors-enable-nyan-cat-progress-bar= to =t=:
#+BEGIN_SRC emacs-lisp
(setq-default dotspacemacs-configuration-layers '(
(colors :variables colors-enable-nyan-cat-progress-bar t)))
#+END_SRC
It may be handy to enable it only in a GUI, you can do it by using
a quasi-quoted list:
#+BEGIN_SRC emacs-lisp
(setq-default dotspacemacs-configuration-layers
=((colors :variables
colors-enable-nyan-cat-progress-bar ,(display-graphic-p))))
#+END_SRC
* Key bindings
The prefix associated with colors is ~C~.
** Rainbow Identifiers
[[file:img/theme-tweaks-python.png]]
=rainbow-identifiers= mode can be toggled on and off with:
~SPC t C i~
2015-06-10 16:44:30 +00:00
Note that the toggle is local to the current buffer.
The =saturation= and =lightness= of identifier colors can be adjusted live
with the transient-state:
2015-06-10 16:44:30 +00:00
| Key Binding | Description |
|-----------------+------------------------------------------|
| ~SPC C i s~ | initiate change =saturation= mini-mode |
| ~SPC C i l~ | initiate change =lightness= mini-mode |
2015-06-10 16:44:30 +00:00
| ~+~ | increase the =saturation= or =lightness= |
| ~-~ | decrease the =saturation= or =lightness= |
| ~=~ | reset the =saturation= or =lightness= |
| ~Any other key~ | leave the change mini-mode |
** Rainbow Mode
[[file:img/rainbow-mode.png]]
=rainbow-mode= mode can be toggled on and off with:
~SPC t C c~
2015-06-10 16:44:30 +00:00
** Nyan Mode
=nyan-mode= mode can be toggled on and off with:
~SPC t m n~
2015-06-10 16:44:30 +00:00
Note that the toggle is local to the current buffer.