Add highlight-sexp

This commit is contained in:
David Morgan 2023-02-02 08:23:23 +00:00
parent 3382598069
commit 660f61d068
Signed by: djm
GPG Key ID: C171251002C200F2
1 changed files with 7 additions and 0 deletions

View File

@ -163,5 +163,12 @@
(set-syntax-table emacs-lisp-mode-syntax-table) (set-syntax-table emacs-lisp-mode-syntax-table)
(smartparens-strict-mode))) (smartparens-strict-mode)))
(use-package highlight-sexp
:diminish
:custom (hl-sexp-background-color "grey10") ;; grey25 grey30 DarkBlue navy MidnightBlue DarkSlateBlue
:hook
(emacs-lisp-mode . highlight-sexp-mode)
(clojure-mode . highlight-sexp-mode))
(provide 'init-ui) (provide 'init-ui)
;;; init-ui.el ends here ;;; init-ui.el ends here