.emacs-my
changeset 1728 746bcf68435f
parent 1727 371302065ef0
child 1729 237c8f98ac43
equal deleted inserted replaced
1727:371302065ef0 1728:746bcf68435f
   978 (require 'paren)
   978 (require 'paren)
   979 
   979 
   980 (when window-system
   980 (when window-system
   981   (face-spec-set 'show-paren-match '((t :background "wheat"))))
   981   (face-spec-set 'show-paren-match '((t :background "wheat"))))
   982 ;; parenthesis, expression, mixed
   982 ;; parenthesis, expression, mixed
   983 (setq show-paren-style 'expression)
   983 (setq show-paren-style 'parenthesis)
   984 
   984 
   985 ;; show-paren-mode is global, to override have to be local variable.
   985 ;; show-paren-mode is global, to override have to be local variable.
   986 (make-variable-buffer-local 'show-paren-mode)
   986 (make-variable-buffer-local 'show-paren-mode)
   987 (show-paren-mode 1)
   987 (show-paren-mode 1)
   988 
   988