[Emacs] Remove some prettified symbols

This commit is contained in:
Lucien Cartier-Tilet 2023-03-10 15:33:20 +01:00
parent a1fbe5d2f8
commit 5918d9d756
Signed by: phundrak
GPG Key ID: BD7789E705CB8DCA
1 changed files with 1 additions and 5 deletions

View File

@ -7873,12 +7873,8 @@ built-in! With that, I can replace strings of my choice by another
character of my choice! First, lets declare the general symbols that
will be used everywhere.
#+begin_src emacs-lisp
(defun prog-mode-set-symbols-alist ()
(setq prettify-symbols-alist '(("lambda" . ?λ)
("null" . ?∅)
("NULL" . ?∅)))
(setq prettify-symbols-alist '(("lambda" . ?λ)))
(prettify-symbols-mode 1))
(add-hook 'prog-mode-hook #'prog-mode-set-symbols-alist)