From cc4ab653c25fc58df3fe2ebfa1cb667989b40984 Mon Sep 17 00:00:00 2001 From: Aaron Zeng Date: Wed, 17 Jul 2019 11:53:28 -0400 Subject: [PATCH] Update core-dotspacemacs.el default font size 0ffdb353f9db507320495d19f71759ec819d267a changed the default config template to use a point size instead of a pixel size. Change the defvar declaration as well. Commit modified by duianto: Updated font size in doc/documentation.org --- CHANGELOG.develop | 2 +- core/core-dotspacemacs.el | 2 +- doc/DOCUMENTATION.org | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.develop b/CHANGELOG.develop index 2b74ad094..f8e697884 100644 --- a/CHANGELOG.develop +++ b/CHANGELOG.develop @@ -484,7 +484,7 @@ Other: - Allow customizing default major mode for new empty buffers in ~SPC b N n~, see =dotspacemacs-new-empty-buffer-major-mode= (thanks to Juha Jeronen) - Changed =dotspacemacs-default-font= =:size= from =13= (pixel size) to =10.0= - (point size) (thanks to duianto) + (point size) (thanks to Aaron Zeng and duianto) - Fixed: - Avoid non-idempotent use of push in init code (thanks to Miciah Masters) - Moved Spacemacs startup progress bar to =core-progress-bar.el=, removed diff --git a/core/core-dotspacemacs.el b/core/core-dotspacemacs.el index f28249148..239f184a9 100644 --- a/core/core-dotspacemacs.el +++ b/core/core-dotspacemacs.el @@ -226,7 +226,7 @@ emacs.") ;; emacs.") (defvar dotspacemacs-default-font '("Source Code Pro" - :size 13 + :size 10.0 :weight normal :width normal) "Default font, or prioritized list of fonts. This setting has no effect when diff --git a/doc/DOCUMENTATION.org b/doc/DOCUMENTATION.org index 4f6ce12aa..724aa5e5f 100644 --- a/doc/DOCUMENTATION.org +++ b/doc/DOCUMENTATION.org @@ -1191,7 +1191,7 @@ To change the default font set the variable =dotspacemacs-default-font= in your #+BEGIN_SRC emacs-lisp (setq-default dotspacemacs-default-font '("Source Code Pro" - :size 13 + :size 10.0 :weight normal :width normal)) #+END_SRC