Wednesday, March 21, 2012

How to disable bold (font weight) globally in emacs? - Stack Overflow

How to disable bold (font weight) globally in emacs? - Stack Overflow: "Another possibility, which also deals with underlines, would be to evaluate the following snippet in a running Emacs session:

(mapc
(lambda (face)
(set-face-attribute face nil :weight 'normal :underline nil))
(face-list))
"

'via Blog this'