mirror of
https://github.com/lliding/ld-emacs.git
synced 2025-10-13 05:23:05 +00:00
12 lines
287 B
EmacsLisp
12 lines
287 B
EmacsLisp
;; -*- coding: utf-8; -*-
|
|
;;; Require:
|
|
(require 'highlight-parentheses)
|
|
|
|
;;; Code:
|
|
(setq hl-paren-colors '("DarkOrange" "DeepSkyBlue" "DarkRed"))
|
|
(add-hook 'find-file-hook 'highlight-parentheses-mode t)
|
|
|
|
(provide 'init-highlight-parentheses)
|
|
|
|
;;; init-highlight-parentheses.el ends here
|