推荐使用highlight-parentheses mode
用list-packages安装,然后在init.el中添加
(require 'highlight-parentheses)
(define-globalized-minor-mode global-highlight-parentheses-mode
highlight-parentheses-mode
(lambda ()
(highlight-parentheses-mode t)))
(global-highlight-parentheses-mode t)
这样默认所有buffer都启用了。
可以将括号从内到位用不同颜色显示,相当好用。
show-paren-mode, 忘了它吧。