michael-franzese@gmx.com writes: > Is there a better way to write the following when you have many > things to push to prettify-symbols-alist? > > (push '("\\alpha" . ?α) prettify-symbols-alist) I think it's better to use add-to-list, if you want to add this in your own configuration. But if you have a lot of elements, you might also consider something like (setq prettify-symbols-alist (append '(("\\alpha" . ?α) ("\\beta" . ?β) ("\\gamma" . ?γ) ;; ... ) prettify-symbols-alist)) -- Philip K.