From 9665dd40b49d724998793ce2580715f8e59168f9 Mon Sep 17 00:00:00 2001 From: tastytea Date: Tue, 10 Mar 2020 10:29:02 +0100 Subject: [PATCH] Emacs: Fix custom-faces definition for rainvow-delimiters. --- init.d/programming/common.el | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/init.d/programming/common.el b/init.d/programming/common.el index f01cfab..0b68f91 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-03-09T15:35:25+0100> +;; Time-stamp: <2020-03-10T10:28:52+0100> ;;; Commentary: @@ -212,18 +212,18 @@ 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 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"))))) + :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")))) :hook (prog-mode . rainbow-delimiters-mode)) (use-package rainbow-mode