takaxp / moom

A Moom port to Emacs - Make your dominant hand FREE from your mouse
GNU General Public License v3.0
79 stars 3 forks source link

moom-font-init-size does not work #9

Closed takaxp closed 6 years ago

takaxp commented 6 years ago

Currently, the following code means nothing.

(when (require 'moom nil t)
  (setq moom-font-init-size 16))

If you really want to change the initial font size, please set moom-font-init-size before requiring moom. Will be fixed.


(setq moom-font-init-size 16)
(when (require 'moom nil t)
  ;; add some settings here
)
takaxp commented 6 years ago

moom-font-init-size was hidden. Instead of that, please use :size option of moom-font-ascii to change font size. If you also provide :immediate option, then the font size will be immediately changed.