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

djangoliv
- 3,199
- 16
- 32
C-x C-+
(text-scale-adjust
) in the given buffer. – JeanPierre Jan 10 '17 at 12:58face-remap-add-relative
: http://emacs.stackexchange.com/a/7283/2287 – lawlist Jan 11 '17 at 15:33