Switched to Hermit font

This commit is contained in:
Marcel Kapfer 2019-01-19 15:43:24 +01:00
parent 4eb776a67c
commit 1d8b025d3c
No known key found for this signature in database
GPG Key ID: 2DD1043A5603FCED
1 changed files with 2 additions and 2 deletions

View File

@ -187,12 +187,12 @@
(global-auto-revert-mode t)
;; set font
(set-frame-font "Fira Mono 10" nil t)
(set-frame-font "Hermit 9" 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 "Fira Mono 10" nil t)))
(lambda (frame) (set-frame-font "Hermit 9" nil t)))
;; -----------------------------------------------------------------------------