/ Published in: Emacs Lisp
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
;; make a face (make-face 'font-lock-small-face) (set-face-attribute 'font-lock-small-face nil :height 0.5) ; have smaller font. ;; add this setting to all shell-mode buffers (add-hook 'shell-mode-hook '(lambda () (font-lock-mode t) (buffer-face-mode t) ; only in emacs 23 (buffer-face-set 'font-lock-small-face) ;; other stuff ))