From ca59c7fbff32a590400f0aff65a1d6c971c55788 Mon Sep 17 00:00:00 2001 From: tastytea Date: Thu, 19 Aug 2021 15:48:44 +0200 Subject: [PATCH] Invert colors for highlighted parentheses. --- init.d/basics/appearance.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init.d/basics/appearance.el b/init.d/basics/appearance.el index 60b70d5..c573757 100644 --- a/init.d/basics/appearance.el +++ b/init.d/basics/appearance.el @@ -139,7 +139,7 @@ :custom ((highlight-parentheses-colors nil) (highlight-parentheses-background-colors nil) (highlight-parentheses-attributes - '((:foreground "Burlywood" :weight ultrabold) (:weight bold)))) + '((:inverse-video t) (:weight ultrabold)))) :hook (prog-mode . highlight-parentheses-mode)) (provide 'basics/appearance)