Switch font to San Francisco

This commit is contained in:
Curt Spark 2024-12-23 15:00:27 +00:00
parent ff0995b50a
commit a9afa69c99
2 changed files with 3 additions and 2 deletions

View File

@ -228,7 +228,8 @@ Install the package, enable it and ensure that it always is installed:
#+END_SRC
*** Default Font
#+BEGIN_SRC emacs-lisp
(set-frame-font "Deja Vu Sans Mono 14")
;;(set-frame-font "Deja Vu Sans Mono 14")
(set-frame-font "SFMono Nerd Font 14")
(add-hook 'prog-mode-hook (lambda () (text-scale-increase 5)))
#+END_SRC
*** Emacs Dashboard

View File

@ -108,5 +108,5 @@
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
'(default ((t (:inherit nil :extend nil :stipple nil :background "#fbf1c7" :foreground "#282828" :inverse-video nil :box nil :strike-through nil :overline nil :underline nil :slant normal :weight regular :height 128 :width normal :foundry "PfEd" :family "DejaVu Sans Mono")))))
'(default ((t (:inherit nil :extend nil :stipple nil :background "#fbf1c7" :foreground "#282828" :inverse-video nil :box nil :strike-through nil :overline nil :underline nil :slant normal :weight regular :height 128 :width normal :foundry "PfEd" :family "SFMono Nerd Font")))))