Trying to minimize usage of both to make my theme cleaner, but struggling to change it everywhere in each font face
Is there any easier solution?
Doom Emacs 28.2
You must log in or register to comment.
using the Modus-Theme, you can disable this features and customize all visual aspects of emacs
Here’s a method I use to disable bold and underline faces. I found it online years ago, and unfortunately lost the attribution:
(defun cm/clean-fonts() "Eliminate bold and underline fonts" (interactive) (mapc (lambda (face) (set-face-attribute face nil :weight 'normal :underline nil)) (face-list)))
Wow, thank you, that worked!