cmcmahan61

joined 1 year ago
[โ€“] cmcmahan61@alien.top 1 points 1 year ago (1 children)

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)))