[emacs] Override font-lock-faces to avoid changing the font family or size

This commit is contained in:
Correl Roush 2013-06-21 12:41:21 -04:00
parent cbbb0327d6
commit aadb781161

View file

@ -125,10 +125,12 @@
'(indent-tabs-mode nil) '(indent-tabs-mode nil)
'(inferior-lisp-program "sbcl") '(inferior-lisp-program "sbcl")
'(inhibit-startup-screen t)) '(inhibit-startup-screen t))
(put 'narrow-to-region 'disabled nil)
(custom-set-faces (custom-set-faces
;; custom-set-faces was added by Custom. ;; custom-set-faces was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful. ;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance. ;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right. ;; If there is more than one, they won't work right.
'(default ((t (:inherit nil :stipple nil :background "black" :foreground "white" :inverse-video nil :box nil :strike-through nil :overline nil :underline nil :slant normal :weight normal :height 80 :width normal :foundry "unknown" :family "DejaVu Sans Mono"))))) '(default ((t (:inherit nil :stipple nil :background "black" :foreground "white" :inverse-video nil :box nil :strike-through nil :overline nil :underline nil :slant normal :weight normal :height 80 :width normal :foundry "unknown" :family "DejaVu Sans Mono"))))
(put 'narrow-to-region 'disabled nil) '(font-lock-function-name-face ((t (:foreground "LightSkyBlue" :weight bold))))
'(font-lock-type-face ((t (:foreground "PaleGreen" :weight bold)))))