Enable highlight-parentheses-mode globally, change colors again.

This commit is contained in:
tastytea 2021-08-21 14:58:11 +02:00
parent 51f3252a72
commit 2bb52f6016
Signed by: tastytea
GPG Key ID: CFC39497F1B26E07
1 changed files with 4 additions and 3 deletions

View File

@ -136,12 +136,13 @@
(use-package highlight-parentheses
:diminish (highlight-parentheses-mode)
:demand t
:custom ((highlight-parentheses-colors nil)
(highlight-parentheses-background-colors nil)
(highlight-parentheses-attributes
'((:inverse-video t) (:weight ultrabold))))
:hook ((prog-mode . highlight-parentheses-mode)
(text-mode . highlight-parentheses-mode)))
`((:weight bold :background ,(face-foreground 'whitespace-space))
(:weight ultrabold))))
:config (global-highlight-parentheses-mode))
(provide 'basics/appearance)
;;; appearance.el ends here