Added cperl-mode and renamed some headings

This commit is contained in:
qorg11 2020-07-05 06:49:36 +02:00
parent 0b10d3aa4b
commit 8ba5b1e5d8
No known key found for this signature in database
GPG key ID: 343FC20A4ACA62B9

View file

@ -1,3 +1,4 @@
#+AUTHOR: qorg11
#+TITLE: emacs config
#+OPTIONS: toc:nil
@ -425,15 +426,23 @@ Including indent-buffer, which should not be called automatically on save."
(blink-cursor-mode 0)
#+END_SRC
** Lisp things
#+BEGIN_SRC emacs-lisp
** Programming language things
*** Lisp
Rainbow parentheses, If someone can tell me why it does not
work. please tell me.
#+BEGIN_SRC emacs-lisp
(use-package rainbow-delimiters
:ensure t
:init
(add-hook 'emacs-lisp-mode 'rainbow-delimiters-mode))
#+END_SRC
#+END_SRC
*** Perl
Cperl-mode is better than perl-mode. You can't change my mind.
#+BEGIN_SRC emacs-lisp
(defalias 'perl-mode 'cperl-mode)
#+END_SRC
** Beacon mode
's cool
#+BEGIN_SRC emacs-lisp