diff options
author | Franck Cuny <franck@fcuny.net> | 2022-02-03 09:30:07 -0800 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2022-02-03 09:30:07 -0800 |
commit | 89677ab6be6e9ce76e8a916714c29b7fbe56e2d0 (patch) | |
tree | c46397f546a3a5568ee237e446af4eb020434b20 /emacs/custom | |
parent | projectile: initial configuration (diff) | |
download | emacs.d-89677ab6be6e9ce76e8a916714c29b7fbe56e2d0.tar.gz |
ui: increase font size for OSX
Diffstat (limited to '')
-rw-r--r-- | emacs/custom/fcuny-ui.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/emacs/custom/fcuny-ui.el b/emacs/custom/fcuny-ui.el index 61d3348..e7b0019 100644 --- a/emacs/custom/fcuny-ui.el +++ b/emacs/custom/fcuny-ui.el @@ -27,7 +27,7 @@ (blink-cursor-mode -1) (setq frame-title-format '("%b@" (:eval (or (file-remote-p default-directory 'host) system-name)))) (when (memq window-system '(mac ns)) - (set-frame-font "Source Code Pro-14") + (set-frame-font "Source Code Pro-15") (add-to-list 'default-frame-alist '(fullscreen . maximized)) (add-to-list 'default-frame-alist '(ns-appearance . nil)) (add-to-list 'default-frame-alist '(ns-transparent-titlebar . nil)) |