Added conditional support for font sizing

This commit is contained in:
James Patrick 2020-03-09 11:50:16 -04:00
parent 7ca3d54b4a
commit 8da18e14fd
1 changed files with 5 additions and 2 deletions

View File

@ -1,8 +1,11 @@
;;; ~/.doom.d/config.el -*- lexical-binding: t; -*-
;; Set font
(setq doom-font (font-spec :family "FuraCode NF" :size 15))
(setq doom-font (font-spec :family "FuraCode NF" :size 12))
(pcase (system-name)
("zuk"
(font-put doom-font :size 15)) ;; Wayland support for high HDPI scaling has some issues. Increasing the font size works
)
;; Orgmode
;; Set orgmode dir
(custom-set-variables '(org-directory "~/org"))