M-x customize-face RET default vous permettra de définir le visage default
qui sert de base à toutes les autres faces. Vous pouvez y définir la taille de la police.
Voici ce qu'il y a dans mon .emacs. en fait, color-theme va définir les bases, puis mon paramètre de visage personnalisé va remplacer certaines choses. le custom-set-faces est écrit par le mécanisme customize-face d'emacs :
;; my colour theme is whateveryouwant :)
(require 'color-theme)
(color-theme-initialize)
(color-theme-whateveryouwant)
(custom-set-faces
;; custom-set-faces was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
'(default ((t (:stipple nil :background "white" :foreground "black" :inverse-video nil :box nil :strike-through nil :overline nil :underline nil :slant normal :weight normal :height 98 :width normal :foundry "unknown" :family "DejaVu Sans Mono"))))
'(font-lock-comment-face ((t (:foreground "darkorange4"))))
'(font-lock-function-name-face ((t (:foreground "navy"))))
'(font-lock-keyword-face ((t (:foreground "red4"))))
'(font-lock-type-face ((t (:foreground "black"))))
'(linum ((t (:inherit shadow :background "gray95"))))
'(mode-line ((t (nil nil nil nil :background "grey90" (:line-width -1 :color nil :style released-button) "black" :box nil :width condensed :foundry "unknown" :family "DejaVu Sans Mono")))))
1 votes
Voir aussi : stackoverflow.com/questions/2091881/
3 votes
C'est la réponse la plus simple qui a fonctionné pour moi. stackoverflow.com/a/6050987/215094
4 votes
Novice, utiliser
.emacs.d/init.el
à la place, ce qui est mieux (plus propre et meilleur contrôle de version)1 votes
Voir aussi emacs.stackexchange.com/a/10439/5165