spacemacs/layers/+themes/colors/packages.el

168 lines
6.7 KiB
EmacsLisp
Raw Normal View History

;;; packages.el --- Colors Layer packages File for Spacemacs
;;
;; Copyright (c) 2012-2016 Sylvain Benner & Contributors
;;
;; Author: Sylvain Benner <sylvain.benner@gmail.com>
;; URL: https://github.com/syl20bnr/spacemacs
;;
;; This file is not part of GNU Emacs.
;;
;;; License: GPLv3
(setq colors-packages
2014-12-18 05:12:04 +00:00
'(
2015-01-24 05:03:40 +00:00
;; not working well for now
;; rainbow-blocks
(nyan-mode :location local)
rainbow-identifiers
2015-01-24 05:03:40 +00:00
rainbow-mode
))
2014-12-18 05:12:04 +00:00
2015-05-07 04:13:13 +00:00
;; (defun colors/init-rainbow-blocks ()
;; (use-package rainbow-blocks
;; :disabled t
;; :init (add-hook 'emacs-lisp-mode-hook 'rainbow-blocks-mode)))
2015-01-24 05:03:40 +00:00
(defun colors/init-nyan-mode ()
(use-package nyan-mode
:if colors-enable-nyan-cat-progress-bar
:config
(progn
(setq nyan-wavy-trail t)
(setq nyan-animate-nyancat t)
(nyan-mode)
;; explicitly re-enable the cat for the first GUI client
(spacemacs|do-after-display-system-init
(nyan-mode -1)
(nyan-mode))
(spacemacs|add-toggle nyan-cat-progress-bar
:mode nyan-mode
:documentation "Show a nyan cat progress bar in the mode-line."
:evil-leader "tmn"))))
2014-12-18 05:12:04 +00:00
(defun colors/init-rainbow-identifiers ()
(use-package rainbow-identifiers
:commands rainbow-identifiers-mode
:init
(progn
2014-12-18 05:12:04 +00:00
(setq rainbow-identifiers-choose-face-function 'rainbow-identifiers-cie-l*a*b*-choose-face
rainbow-identifiers-cie-l*a*b*-saturation 100
rainbow-identifiers-cie-l*a*b*-lightness 40
;; override theme faces
rainbow-identifiers-faces-to-override '(highlight-quoted-symbol
font-lock-keyword-face
font-lock-function-name-face
2014-12-18 05:12:04 +00:00
font-lock-variable-name-face))
(spacemacs/declare-prefix "Ci" "colors-identifiers")
2014-12-18 05:12:04 +00:00
(spacemacs|add-toggle rainbow-identifier-globally
:mode rainbow-identifiers-mode
2015-07-25 13:14:53 +00:00
:documentation "Colorize identifiers globally."
:evil-leader "tCi")
2014-12-18 05:12:04 +00:00
(when colors-enable-rainbow-identifiers-by-default
(add-hook 'prog-mode-hook 'rainbow-identifiers-mode))
2014-12-18 05:12:04 +00:00
(defun colors//tweak-theme-colors (theme)
"Tweak color themes by adjusting rainbow-identifiers."
2014-12-18 05:12:04 +00:00
(interactive)
;; tweak the saturation and lightness of identifier colors
(let ((sat&light (assq theme colors-theme-identifiers-sat&light)))
(if sat&light
(setq rainbow-identifiers-cie-l*a*b*-saturation (cadr sat&light)
rainbow-identifiers-cie-l*a*b*-lightness (caddr sat&light))
(setq rainbow-identifiers-cie-l*a*b*-saturation 80
rainbow-identifiers-cie-l*a*b*-lightness 45)))))
(colors//tweak-theme-colors spacemacs--cur-theme)
2014-12-18 05:12:04 +00:00
(defadvice spacemacs/post-theme-init (after colors/post-theme-init activate)
"Adjust lightness and brightness of rainbow-identifiers on post theme init."
(colors//tweak-theme-colors spacemacs--cur-theme))
2014-12-18 05:12:04 +00:00
:config
(progn
;; functions to change saturation and lightness of colors
(defun colors//change-color-mini-mode-doc (component)
"Display a short documentation in the mini buffer."
(let ((var (intern (format
"rainbow-identifiers-cie-l*a*b*-%s" component))))
(spacemacs/echo "Change color %s mini-mode (value: %s)
2014-12-18 05:12:04 +00:00
+ to increase %s
- to decrease %s
= to reset
Press any other key to exit." component (eval var) component component)))
(defun colors/change-color-component-overlay-map (component)
"Set a temporary overlay map to easily change a color COMPONENT from
rainbow-identifier mode. The color COMPONENT can be 'saturation' or
'lightness'."
(set-temporary-overlay-map
(let ((map (make-sparse-keymap))
(up-func (intern (format "colors/change-color-%s-up" component)))
(down-func (intern (format "colors/change-color-%s-down" component)))
(reset-func (intern (format "colors/change-color-%s-reset" component))))
2014-12-18 05:12:04 +00:00
(define-key map (kbd "+") up-func)
(define-key map (kbd "-") down-func)
(define-key map (kbd "=") reset-func)
map) t)
(colors//change-color-mini-mode-doc component))
2014-12-18 05:12:04 +00:00
(defun colors/start-change-color-saturation ()
"Initiate the overlay map to change the saturation."
(interactive)
(colors/change-color-component-overlay-map "saturation"))
(defun colors/change-color-saturation-up ()
"Increase the saturation by 5 units."
(interactive)
(colors//change-color-component-func "saturation" 5))
(defun colors/change-color-saturation-down ()
"Decrease the saturation by 5 units."
(interactive)
(colors//change-color-component-func "saturation" -5))
(defun colors/change-color-saturation-reset ()
"Reset the saturation to 100."
(interactive)
(colors//change-color-component-func "saturation" 100 t))
(defun colors/start-change-color-lightness ()
"Initiate the overlay map to change the lightness."
(interactive)
(colors/change-color-component-overlay-map "lightness"))
(defun colors/change-color-lightness-up ()
"Increase the lightness by 5 units."
(interactive)
(colors//change-color-component-func "lightness" 5))
(defun colors/change-color-lightness-down ()
"Decrease the lightness by 5 units."
(interactive)
(colors//change-color-component-func "lightness" -5))
(defun colors/change-color-lightness-reset ()
"Reset the lightness to 40."
(interactive)
(colors//change-color-component-func "lightness" 40 t))
(defun colors//change-color-component-func
(component inc &optional reset)
"Change the color component by adding INC value to it. If RESET is not
nil the color component is set to INC."
(let* ((var (intern (format
"rainbow-identifiers-cie-l*a*b*-%s" component)))
(new-value (+ (eval var) inc)))
(if reset
(set var inc)
(progn
(if (< new-value 0)
(setq new-value 0))
(set var new-value)))
(font-lock-fontify-buffer)
(colors/change-color-component-overlay-map component)))
;; key bindings
(spacemacs/set-leader-keys "Cis" 'colors/start-change-color-saturation)
(spacemacs/set-leader-keys "Cil" 'colors/start-change-color-lightness))))
2015-01-24 05:03:40 +00:00
(defun colors/init-rainbow-mode ()
(use-package rainbow-mode
:commands rainbow-mode
:init (spacemacs/set-leader-keys "tCc" 'rainbow-mode)
2015-01-24 05:03:40 +00:00
:config (spacemacs|hide-lighter rainbow-mode)))