Fixed rainbow delimiters and added it to lisp modes (emacs lisp,

scheme and common lisp)
This commit is contained in:
qorg11 2020-07-06 21:06:36 +02:00
parent f5602c4f06
commit ea3f99f265
No known key found for this signature in database
GPG key ID: 343FC20A4ACA62B9

View file

@ -416,13 +416,15 @@ Including indent-buffer, which should not be called automatically on save."
#+END_SRC
** Programming language things
*** Lisp
Rainbow parentheses, If someone can tell me why it does not
work. please tell me.
Parentheses highlight in lisp modes. So you can easily identify
them.
#+BEGIN_SRC emacs-lisp
(use-package rainbow-delimiters
:ensure t
:init
(add-hook 'emacs-lisp-mode 'rainbow-delimiters-mode))
(add-hook 'emacs-lisp-mode-hook 'rainbow-delimiters-mode)
(add-hook 'lisp-mode-hook 'rainbow-delimiters-mode)
(add-hook 'scheme-mode-hook 'rainbow-delimiters-mode))
#+END_SRC
*** Perl