Move most font config to User Interface

This commit is contained in:
contrapunctus 2022-02-17 19:34:35 +05:30
parent 24a37e6e59
commit 4c68fd40fc
1 changed files with 8 additions and 3 deletions

View File

@ -354,6 +354,12 @@ NAME is the name of the process and its buffer."
(defalias 'yes-or-no-p 'y-or-n-p)
#+END_SRC
** font size
#+BEGIN_SRC emacs-lisp
(setq default-frame-alist '((font . "DejaVu Sans Mono-12")))
;; (set-face-attribute 'default nil :height 120)
#+END_SRC
** time
:PROPERTIES:
:CREATED: 2022-01-16T12:47:09+0530
@ -3394,8 +3400,7 @@ But with =initials=, the desired completion is often buried in the results. That
#+BEGIN_SRC emacs-lisp
(defun --set-emoji-font (frame)
"Adjust the font settings of FRAME so Emacs can display emoji properly."
(set-fontset-font t 'symbol (font-spec :family "Symbola") frame 'prepend)
(set-face-attribute 'default nil :height 120))
(set-fontset-font t 'symbol (font-spec :family "Symbola") frame 'prepend))
(use-package company-emoji
:ensure t
@ -5415,7 +5420,7 @@ text size change
nicked from wasamasa's init - https://github.com/wasamasa/dotemacs/blob/934d0b37692d62fe9af56b52accac5bcd4445ae3/init.org
#+BEGIN_SRC emacs-lisp
(setq default-frame-alist '((font . "DejaVu Sans Mono-10.5")))
#+END_SRC
#+BEGIN_SRC emacs-lisp