Emacs: Back to 2 rainbow-delimiters colors.
This commit is contained in:
parent
62724bfcf3
commit
4c7d63534b
|
@ -1,6 +1,6 @@
|
||||||
;;; common.el --- Common programming settings. -*- lexical-binding: t; -*-
|
;;; common.el --- Common programming settings. -*- lexical-binding: t; -*-
|
||||||
|
|
||||||
;; Time-stamp: <2020-02-04T03:09:04+0100>
|
;; Time-stamp: <2020-02-04T18:46:17+0100>
|
||||||
|
|
||||||
;;; Commentary:
|
;;; Commentary:
|
||||||
|
|
||||||
|
@ -272,21 +272,17 @@ year if mode is derived from prog-mode."
|
||||||
;; Highlights parentheses, brackets or braces according to their depth.
|
;; Highlights parentheses, brackets or braces according to their depth.
|
||||||
(use-package rainbow-delimiters
|
(use-package rainbow-delimiters
|
||||||
:custom
|
:custom
|
||||||
(rainbow-delimiters-max-face-count 4)
|
(rainbow-delimiters-max-face-count 2)
|
||||||
|
|
||||||
:custom-face
|
:custom-face
|
||||||
(rainbow-delimiters-depth-1-face ((t
|
(rainbow-delimiters-depth-1-face ((t (:inherit rainbow-delimiters-base-face
|
||||||
(:inherit rainbow-delimiters-base-face
|
:foreground "LightPink"))))
|
||||||
:foreground "LightPink"))))
|
(rainbow-delimiters-depth-2-face ((t (:inherit rainbow-delimiters-base-face
|
||||||
(rainbow-delimiters-depth-2-face ((t
|
:foreground "LightGreen"))))
|
||||||
(:inherit rainbow-delimiters-base-face
|
(rainbow-delimiters-depth-3-face ((t (:inherit rainbow-delimiters-base-face
|
||||||
:foreground "LightGreen"))))
|
:foreground "MediumPurple1"))))
|
||||||
(rainbow-delimiters-depth-3-face ((t
|
(rainbow-delimiters-depth-4-face ((t (:inherit rainbow-delimiters-base-face
|
||||||
(:inherit rainbow-delimiters-base-face
|
:foreground "LightSkyBlue"))))
|
||||||
:foreground "MediumPurple1"))))
|
|
||||||
(rainbow-delimiters-depth-4-face ((t
|
|
||||||
(:inherit rainbow-delimiters-base-face
|
|
||||||
:foreground "LightSkyBlue"))))
|
|
||||||
|
|
||||||
:hook
|
:hook
|
||||||
(prog-mode . rainbow-delimiters-mode)
|
(prog-mode . rainbow-delimiters-mode)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user