This commit is contained in:
2026-01-31 16:48:30 +00:00
parent 90fe47f127
commit 8c9f969b33
5 changed files with 240 additions and 162 deletions
+24 -24
View File
@@ -347,32 +347,32 @@ Defining the various fonts emacs will use
#+begin_src emacs-lisp
(set-face-attribute 'default nil
:font "FiraCodeNerdFontMono"
:height 110
:weight 'medium)
(set-face-attribute 'variable-pitch nil
:font "FiraCodeNerdFontMono"
:height 120
:weight 'medium)
(set-face-attribute 'fixed-pitch nil
:font "FiraCodeNerdFontMono"
:height 130
:weight 'medium)
:font "MPLUSCodeLatin60"
:height 110
:weight 'medium)
(set-face-attribute 'variable-pitch nil
:font "MPLUSCodeLatin60"
:height 120
:weight 'medium)
(set-face-attribute 'fixed-pitch nil
:font "MPLUSCodeLatin60"
:height 130
:weight 'medium)
;; Makes commented text and keywords italics.
;; This is working in emacsclient but not emacs.
;; Your font must have an italic face available.
(set-face-attribute 'font-lock-comment-face nil
:slant 'italic)
(set-face-attribute 'font-lock-keyword-face nil
:slant 'italic)
;; This sets the default font on all graphical frames created after restarting Emacs.
;; Does the same thing as 'set-face-attribute default' above, but emacsclient fonts
;; are not right unless I also add this method of setting the default font.
(add-to-list 'default-frame-alist '(font . "FiraCodeNerdFontMono-12"))
;; Makes commented text and keywords italics.
;; This is working in emacsclient but not emacs.
;; Your font must have an italic face available.
(set-face-attribute 'font-lock-comment-face nil
:slant 'italic)
(set-face-attribute 'font-lock-keyword-face nil
:slant 'italic)
;; This sets the default font on all graphical frames created after restarting Emacs.
;; Does the same thing as 'set-face-attribute default' above, but emacsclient fonts
;; are not right unless I also add this method of setting the default font.
(add-to-list 'default-frame-alist '(font . "MPLUSCodeLatin60-12"))
;; uncomment the following line if line spacing needs adjusting.
;; (setq-default line-spacing 0.12)
;; uncomment the following line if line spacing needs adjusting.
;; (setq-default line-spacing 0.12)
#+end_src