diff options
author | Franck Cuny <franck.cuny@gmail.com> | 2016-11-17 15:33:20 -0800 |
---|---|---|
committer | Franck Cuny <franck.cuny@gmail.com> | 2016-11-17 15:33:20 -0800 |
commit | b2b5fc3795e97222773a192a2f085eae118bff18 (patch) | |
tree | 4ac39dd57b53c8e8cb505c25367391b3640a3dec | |
parent | [Makefile] rewrite it, to install correctly the fonts. (diff) | |
download | emacs.d-b2b5fc3795e97222773a192a2f085eae118bff18.tar.gz |
[Emacs] Try a new font (Go Mono).
Diffstat (limited to '')
-rw-r--r-- | emacs.d/lib/settings.el | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/emacs.d/lib/settings.el b/emacs.d/lib/settings.el index f9d95ab..5869416 100644 --- a/emacs.d/lib/settings.el +++ b/emacs.d/lib/settings.el @@ -55,11 +55,8 @@ (setq frame-title-format '( "%b" " [" (:eval mode-name) "]")) ;; Set default font. Large font for the main window, but small font for the modeline -(set-face-attribute 'default nil :family "Menlo" :height 160 :weight 'normal :width 'normal) -(set-face-attribute 'mode-line nil :height 110 :background "grey90") - -;; nicer background than plain white -(set-face-background 'default "#FAF6EB") +(set-face-attribute 'default nil :family "Go Mono" :height 160 :weight 'normal :width 'normal) +(set-face-attribute 'mode-line nil :height 110) ;; where to save custom settings (setq custom-file (expand-file-name "var/emacs-custom.el" user-emacs-directory)) |