mirror of
https://codeberg.org/scip/dot-emacs.git
synced 2025-12-17 04:20:57 +01:00
fixed coloring of show-parens matching solarized theme
This commit is contained in:
@@ -201,9 +201,18 @@ _k_: kill (C-k) _s_: split _{_: wrap with { }
|
||||
|
||||
;;; Parens config goes here as well
|
||||
|
||||
;; display matching braces
|
||||
;; display matching parens, braces, brackets etc
|
||||
(show-paren-mode 1)
|
||||
|
||||
;; show matching parens as white on green
|
||||
(set-face-background 'show-paren-match "#228b22")
|
||||
(set-face-foreground 'show-paren-match "#fff")
|
||||
(set-face-attribute 'show-paren-match nil :weight 'extra-bold)
|
||||
|
||||
;; mismatching ones as white on red
|
||||
(set-face-background 'show-paren-mismatch "#b22222")
|
||||
(set-face-foreground 'show-paren-mismatch "#fff")
|
||||
|
||||
;; 'mixed: highlight all if the other paren is invisible
|
||||
;; 'expression: highlight the whole sexp
|
||||
(setq show-paren-style 'mixed)
|
||||
|
||||
Reference in New Issue
Block a user