Emacs: using fira mono right now

This commit is contained in:
Marcel Kapfer 2018-10-21 13:37:24 +02:00
parent 4a73c60316
commit f04ae71e3d
Signed by: mmk2410
GPG Key ID: CADE6F0C09F21B09
1 changed files with 2 additions and 2 deletions

View File

@ -178,12 +178,12 @@
(setq browse-url-generic-program "x-www-browser")
;; set font
(set-frame-font "Hermit 8" nil t)
(set-frame-font "Fira Mono 10" nil t)
;; set the default font after the frame is created.
;; needed because of some issue with emacsclient.
(add-hook 'after-make-frame-functions
(lambda (frame) (set-frame-font "Hermit 8" nil t)))
(lambda (frame) (set-frame-font "Fira Mono 10" nil t)))
;; -----------------------------------------------------------------------------