Hacker News new | ask | show | jobs
by dunefox 2057 days ago
> Besides, a Lisp editor can optionally blur the parentheses so users don't mentally have to.

How do I do that with spacemacs?

1 comments

Try:

===

(package-install 'paren-face)

(global-paren-face-mode 1)

(custom-set-faces '(parenthesis ((t (:foreground "gray50"))))))

===

(edit: formatting)

In the user init file? I'm not an expert on spacemacs.