7

I would like to have different font sizes for the buffer windows in Emacs. That is, I would like to have a bigger font in the buffer where i write the code, and a smaller font in the buffer where i use the term to browse and run the scripts. Is it possible ?

Veera
  • 305
  • 2
  • 5

1 Answers1

7

Yes, you can use a hook:

(add-hook 'term-mode-hook (lambda () (text-scale-decrease 1)))
djangoliv
  • 3,169
  • 16
  • 31