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 ?
Asked
Active
Viewed 1,367 times
1 Answers
7
Yes, you can use a hook:
(add-hook 'term-mode-hook (lambda () (text-scale-decrease 1)))

djangoliv
- 3,169
- 16
- 31