diff options
author | Franck Cuny <franck.cuny@gmail.com> | 2020-01-13 09:22:51 -0800 |
---|---|---|
committer | Franck Cuny <franck.cuny@gmail.com> | 2020-01-13 09:22:51 -0800 |
commit | 7f94a0e082457fbecdea9cface9d69debf5c4d26 (patch) | |
tree | eb59ff42ec260ac2048c9abb2e3ce4d3c861a925 /emacs | |
parent | emacs: show . and .. with ivy. (diff) | |
download | emacs.d-7f94a0e082457fbecdea9cface9d69debf5c4d26.tar.gz |
emacs/ui: font size
Set the size of the font to 15pt, 16 was a little bit too large on the laptop.
Diffstat (limited to '')
-rw-r--r-- | emacs.d/custom/fcuny-ui.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/emacs.d/custom/fcuny-ui.el b/emacs.d/custom/fcuny-ui.el index 6c65ed3..40413e8 100644 --- a/emacs.d/custom/fcuny-ui.el +++ b/emacs.d/custom/fcuny-ui.el @@ -16,7 +16,7 @@ :config (blink-cursor-mode -1) (setq frame-title-format "%b") - (set-frame-font "Source Code Pro-16") + (set-frame-font "Source Code Pro-15") (when (memq window-system '(mac ns)) (add-to-list 'default-frame-alist '(fullscreen . maximized)) (add-to-list 'default-frame-alist '(ns-appearance . nil)) |