~edwargix/emacs.d

49f25c4928498e33025a32351bbb8f45fd4fce53 — David Florness 1 year, 7 months ago b6f9be9
correctly configure font size
1 files changed, 9 insertions(+), 10 deletions(-)

M lisp/appearance.el
M lisp/appearance.el => lisp/appearance.el +9 -10
@@ 1,17 1,16 @@
;; Change frame title
(setq frame-title-format "emacs")

(add-to-list 'default-frame-alist '(font . "Fira Code-10"))

;; Font
(ignore-errors
  (set-frame-font
   (font-spec
    :name "Fira Code"
    :size 13
    :weight 'normal
    :width 'normal)
   nil t))
(setq my-font (font-spec
                :name "Fira Code"
                :size 14
                :weight 'normal
                :width 'normal))
(ignore-errors (set-frame-font my-font nil t))
(add-to-list 'after-make-frame-functions
             (lambda (frame)
               (set-frame-font my-font nil t)))

(set-language-environment "UTF-8")
(prefer-coding-system 'utf-8)