How to disable bold (font weight) globally in emacs?
Asked Answered
D

2

14

I hate bold text while coding. Is it possible to disable bold text (and underline) in every single file and emacs's interface?

Delamare answered 14/1, 2010 at 14:50 Comment(0)
P
20

The easiest way is probably

(set-face-bold-p 'bold nil)

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))
Pioneer answered 14/1, 2010 at 15:40 Comment(0)
P
-3

If you are using Terminal.app, you can also go into your Preferences->Settings. For your current settings, go to the Text group and simply uncheck "Use bold fonts." Screenshot below:

alt text

Perforce answered 29/9, 2010 at 18:57 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.