From 4c7d63534b8c29df0e37544fd3fd3251dc523910 Mon Sep 17 00:00:00 2001 From: tastytea Date: Tue, 4 Feb 2020 18:47:41 +0100 Subject: [PATCH] Emacs: Back to 2 rainbow-delimiters colors. --- init.d/programming/common.el | 24 ++++++++++-------------- 1 file changed, 10 insertions(+), 14 deletions(-) diff --git a/init.d/programming/common.el b/init.d/programming/common.el index cc368c1..edf1b5d 100644 --- a/init.d/programming/common.el +++ b/init.d/programming/common.el @@ -1,6 +1,6 @@ ;;; 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: @@ -272,21 +272,17 @@ year if mode is derived from prog-mode." ;; Highlights parentheses, brackets or braces according to their depth. (use-package rainbow-delimiters :custom - (rainbow-delimiters-max-face-count 4) + (rainbow-delimiters-max-face-count 2) :custom-face - (rainbow-delimiters-depth-1-face ((t - (:inherit rainbow-delimiters-base-face - :foreground "LightPink")))) - (rainbow-delimiters-depth-2-face ((t - (:inherit rainbow-delimiters-base-face - :foreground "LightGreen")))) - (rainbow-delimiters-depth-3-face ((t - (:inherit rainbow-delimiters-base-face - :foreground "MediumPurple1")))) - (rainbow-delimiters-depth-4-face ((t - (:inherit rainbow-delimiters-base-face - :foreground "LightSkyBlue")))) + (rainbow-delimiters-depth-1-face ((t (:inherit rainbow-delimiters-base-face + :foreground "LightPink")))) + (rainbow-delimiters-depth-2-face ((t (:inherit rainbow-delimiters-base-face + :foreground "LightGreen")))) + (rainbow-delimiters-depth-3-face ((t (:inherit rainbow-delimiters-base-face + :foreground "MediumPurple1")))) + (rainbow-delimiters-depth-4-face ((t (:inherit rainbow-delimiters-base-face + :foreground "LightSkyBlue")))) :hook (prog-mode . rainbow-delimiters-mode)