21 lines
767 B
EmacsLisp
21 lines
767 B
EmacsLisp
;;; ui/unicode/autoload.el -*- lexical-binding: t; -*-
|
|
|
|
;;;###autoload
|
|
(add-hook! 'doom-init-ui-hook
|
|
(defun +unicode-init-fonts-h ()
|
|
"Set up `unicode-fonts' to eventually run; accommodating the daemon, if
|
|
necessary."
|
|
(setq-default bidi-display-reordering t
|
|
doom-unicode-font nil)
|
|
(if (display-graphic-p)
|
|
(+unicode-setup-fonts-h (selected-frame))
|
|
(add-hook 'after-make-frame-functions #'+unicode-setup-fonts-h))))
|
|
|
|
;;;###autoload
|
|
(defun +unicode-setup-fonts-h (&optional frame)
|
|
"Initialize `unicode-fonts', if in a GUI session."
|
|
(when (and frame (display-graphic-p frame))
|
|
(with-selected-frame frame
|
|
(require 'unicode-fonts)
|
|
;; NOTE will impact startup time on first run
|
|
(unicode-fonts-setup))))
|