[Emacs] Remove some prettified symbols

This commit is contained in:
2023-03-10 15:33:20 +01:00
parent a1fbe5d2f8
commit 5918d9d756

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)