diff --git a/init.d/basics/appearance.el b/init.d/basics/appearance.el index d62522a..07358fd 100644 --- a/init.d/basics/appearance.el +++ b/init.d/basics/appearance.el @@ -134,5 +134,13 @@ (display-line-numbers-mode -1)) (global-display-line-numbers-mode))) +(use-package highlight-parentheses + :diminish (highlight-parentheses-mode) + :custom ((highlight-parentheses-colors nil) + (highlight-parentheses-background-colors nil) + (highlight-parentheses-attributes + '((:foreground "Yellow" :weight bold) (:weight bold)))) + :hook (prog-mode . highlight-parentheses-mode)) + (provide 'basics/appearance) ;;; appearance.el ends here